Re: [PHP] Another way to send variables

2008-06-13 Thread Daniel Brown
On Fri, Jun 13, 2008 at 5:49 PM, R B <[EMAIL PROTECTED]> wrote: > Hello. > > I have this script (script1.php): > > $a = "Hello"; > header("Location: script2.php"); > ?> > > I need to send the $a variable to script2.php, but i don´t want to send it > in the url. > > Is there another method?

RE: [PHP] Another way to send variables

2008-06-13 Thread Boyd, Todd M.
> -Original Message- > From: R B [mailto:[EMAIL PROTECTED] > Sent: Friday, June 13, 2008 4:50 PM > To: PHP List > Subject: [PHP] Another way to send variables > > Hello. > > I have this script (script1.php): > > $a = "Hello"; > header("Location: script2.php"); > ?> > > I need to send

Re: [PHP] Another way to send variables

2008-06-13 Thread Nathan Nobbe
On Fri, Jun 13, 2008 at 3:49 PM, R B <[EMAIL PROTECTED]> wrote: > Hello. > > I have this script (script1.php): > > $a = "Hello"; > header("Location: script2.php"); > ?> > > I need to send the $a variable to script2.php, but i don´t want to send it > in the url. > > Is there another method? > >