smardy Posted February 11, 2005 Share Posted February 11, 2005 How do get something that like when you click say a link that takes you to test.php and will say HI on the page. But Iv seen stuff on sites where you go to a link to that test.php exept its test.php?test and the page would say HI HOW ARE YOU insted of HI... How do you do that? Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/ Share on other sites More sharing options...
ashoogy Posted February 13, 2005 Share Posted February 13, 2005 Hi there, can you be more specific? I understand nothing I can not help you if you don't clarify things? regards, Ashoogy Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/#findComment-7120 Share on other sites More sharing options...
dEcade Posted March 18, 2005 Share Posted March 18, 2005 How do get something that like when you click say a link that takes you to test.php and will say HI on the page. But Iv seen stuff on sites where you go to a link to that test.php exept its test.php?test and the page would say HI HOW ARE YOU insted of HI... How do you do that? 203759[/snapback] <? if(!$test){ echo 'hi'; } if($test == php){ echo 'welcome to PHP!'; } ?> Hope that helped Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/#findComment-7259 Share on other sites More sharing options...
zq29 Posted March 23, 2005 Share Posted March 23, 2005 1) This question is not related to Dreamweaver. 2) Read the FAQ, a book, or php.net. 3) dEcades code will not work. Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/#findComment-7290 Share on other sites More sharing options...
wildteen88 Posted March 25, 2005 Share Posted March 25, 2005 <? if(!$test){ echo 'hi'; } if($test == php){ echo 'welcome to PHP!'; } ?> Yes this won't as you haven't defined any _POST or _GET variables. Or your PHP configuartion has register_globals on. <?php if(isset($_GET['test']) == "hi") { echo "hi, how are your?"; } else { echo '<a href="'.$_SERVER['PHP_SELF'].'?test=hi">Click to see a message</a>'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/#findComment-7308 Share on other sites More sharing options...
smardy Posted March 25, 2005 Author Share Posted March 25, 2005 I have got it figured out but now I am wondering how do you get it so that in your browser it will be something like calendar.php?cal=2005&month=feb I can get it to do that except if I have echo on the variable cal=2005 then it will show up when I put the cal=2005&month=feb plus the text that I want to echo back when you type that it so how can I get it so that cal=2005 will echo back as say calender and cal=2005&month=feb will just echo back with other next nothing that is on the cal=2005 here is my script [!--PHP-Head--][div class=\'phptop\']PHP[/div][div class=\'phpmain\'][!--PHP-EHead--] if( !$cal ) { echo \"Calender\"; } if( $cal == 2005 ) { echo \"Choose a month\"; } if( $cal == \'2005\' && $month == \'jan\' ) { echo \"January\"; } [/span][!--PHP-Foot--][/div][!--PHP-EFoot--] Quote Link to comment https://forums.phpfreaks.com/topic/2161-url-adone/#findComment-7309 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.