I finally got things together and now the echo is not working can someone tell me what I am doing wrong? The page I want to echo is working fine I just cant echo the information to another page.
Thank you.
Here is the echo page.
<?php
echo '<a href="http://mywebsite.com/index.php?text=this">';
$text=$_GET['this'];
?>
The code of the page I am trying to echo
<?php $text = $_GET['text'];
if (!$text) {die('No text selected');}
elseif($text=='this') {echo 'This Text goes here'; }
elseif($text=='that') {echo '1'; }
?>