Should the below code print out a link. then if the link is clicked, it should print out "Text is true." ? If not, please correct....this code keeps defaulting to Text is true, even though I didnt click the link.
<?php
if($text = TRUE)
{
echo"Text is true.";
}
elseif($text = "")
{
echo"Text is not true";
echo"<a href=\"$PHP_SELF?text=TRUE\"></a>";
}
?>