Jump to content

[SOLVED] Help with a simple script


earthone

Recommended Posts

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;
}
?> 

Link to comment
https://forums.phpfreaks.com/topic/176341-solved-help-with-a-simple-script/
Share on other sites

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'; }
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.