Posted by Gaga on 12/06/06 11:37
If i make like this:
<?
echo "$name"; // passed from page before
?>
I get result : John
-----------------------------------------------------
If i use :
<?
if(isset($_GET['name'])) //--- or "name"
{
echo "$name";
}
else
{
echo ' Error !';
}
?>
I allways end in error part. Why ?
Navigation:
[Reply to this message]
|