whelpton Posted June 29, 2008 Share Posted June 29, 2008 I was wondering how do I make php echo something when it encounters a ?= for example, if the page was test.php nothing would display, but if it was test.php?=deleted it would say something like your mail has been deleted Link to comment https://forums.phpfreaks.com/topic/112456-solved-help-with/ Share on other sites More sharing options...
DarkWater Posted June 29, 2008 Share Posted June 29, 2008 Uhh....your question was kind of vague, but I'll assume you wanted something like this: if ($_SERVER['QUERY_STRING'] == "deleted") { echo "Something"; } Link to comment https://forums.phpfreaks.com/topic/112456-solved-help-with/#findComment-577379 Share on other sites More sharing options...
whelpton Posted June 29, 2008 Author Share Posted June 29, 2008 Thanks alot Link to comment https://forums.phpfreaks.com/topic/112456-solved-help-with/#findComment-577381 Share on other sites More sharing options...
DarkWater Posted June 29, 2008 Share Posted June 29, 2008 No problem. Link to comment https://forums.phpfreaks.com/topic/112456-solved-help-with/#findComment-577382 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.