Posted by Gordon Burditt on 01/01/07 18:31
>-------------------
><?php
>$page = $REQUEST['page'];
>if($page=="new") include('myInclude.php');
>?>
>-------------------
>
>and try to access var1 and var2 from the include:
>myInclude.php:
>---------------------
>$var1 = REQUEST['var1'];
>$var2 = REQUEST['var2'];
It's spelled:
$_REQUEST['var1'];
Navigation:
[Reply to this message]
|