earthone Posted October 3, 2009 Share Posted October 3, 2009 We are trying to write a very basic script what it should do is call a section of text when we pull a url so when we use Code: http://oursite.org/folder/member.php?text=this it should display the correct text section. Can anyone tell us what we are doing wrong and how to fix it. Thank you. <?php if (!$text) {die('No text selected');} elseif($text='this') {echo '<div class="topbar">anything you like, once php has processed it its just html goes here</div>'; } elseif($text='that') {echo '<div class="topbar">anything else you like, once php has processed it its just html goes here</div>'; } switch ($text) { case '': die('No text selected'); break; case 'this': echo '<div class="topbar">anything you like, once php has processed it its just html goes here</div>'; break; case 'that': echo '<div class="topbar">anything else you like, once php has processed it its just html goes here</div>'; include ("./menu.php"); echo "<br class='dontprint'>Property rules<br>All properties are subject"; break; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/176341-solved-help-with-a-simple-script/ Share on other sites More sharing options...
earthone Posted October 3, 2009 Author Share Posted October 3, 2009 We found the solution to this we will post it here so others may use it if they need it. Thank you. <?php $text = $_GET['text']; if (!$text) {die('No text selected');} elseif($text=='this') {echo 'This Text goes here'; } elseif($text=='that') {echo '1'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/176341-solved-help-with-a-simple-script/#findComment-929467 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.