Posted by Luis on 10/21/38 11:16
Ross wrote:
> I want to write a string to a variable and use $_POST or $_GET to retrieve
> it on another page.
>
> I keep gettting an undefined index errror. Can someone show me how this is
> done?
>
> Do I have to use session_start() ?
or just use cookies:
setcookie('myvarname', 'some value');
and in the other page:
echo $_COOKIE['myvarname'];
will output 'some value'
regards
[Back to original message]
|