|
Posted by J.O. Aho on 06/09/07 19:05
macsaregreat@gmail.com wrote:
> O,THANK YOU so much ^_^ it works with the
> <?php
>
> echo $_REQUEST['submission_id'];
>
> import_request_variables('p', 'p_');
> echo $p_submission_id;?>
>
> What is the difference between the two that allow this one to work and
> not the other?
There isn't any magic behind the use of $_REQUEST, it's just the array where
you put together the $_POST, $_GET and $_COOKIE array, kind of
$_REQUEST = array_merge($_POST,$_GET,$_COOKIE)
--
//Aho
Navigation:
[Reply to this message]
|