On Saturday, June 8, 2002 at 2:22:02 AM, you wrote:
> I just read the release notes and do not believe they are referring to my
> dilemma.

Actually, I think they point out the exact reason for your 'dilemma'.

> Here is the code I am using. Just a basic form

> <<Form_act.php>>
> <? 
> if ($phrase){ echo "Phrase-- $phrase";}
> Else{ echo "No Variables";}
?>>

Try changing the above code to...

<?
 if ($_GET['phrase']) { echo "Phrase-- ".$_GET['phrase'];}
 else { echo "No Variables";}
?>

-- 
Stuart


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to