Re: trouble
Monkey Man wrote:
> hi i'm trying to send a variable from one php page to another. is there any
> way?
>
> I tried test.php?name=blah bit didn't work.
>
>
Read up on register_globals, to access that variable from the URL use
$_GET['name']
|