[PHP] Posting variable outside of the post form

2007-03-12 Thread Otto Wyss
I submit a form back to itself with action="" methode="get" yet I've a large PHP variable which I'd like to access afterwards as well. Is this possible somehow? O. Wyss -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Posting variable outside of the post form

2007-03-12 Thread David Giragosian
On 3/12/07, Otto Wyss <[EMAIL PROTECTED]> wrote: I submit a form back to itself with action="" methode="get" yet I've a large PHP variable which I'd like to access afterwards as well. Is this possible somehow? O. Wyss Cookie, session variable, session cookie, database layer... David

Re: [PHP] Posting variable outside of the post form

2007-03-12 Thread Satyam
- Original Message - From: "David Giragosian" <[EMAIL PROTECTED]> To: "Otto Wyss" <[EMAIL PROTECTED]> Cc: Sent: Monday, March 12, 2007 8:18 PM Subject: Re: [PHP] Posting variable outside of the post form On 3/12/07, Otto Wyss <[EMAIL PROTECTED

Re: [PHP] Posting variable outside of the post form

2007-03-12 Thread Richard Lynch
Use sessions. http://php.net/session_start On Mon, March 12, 2007 2:12 pm, Otto Wyss wrote: > I submit a form back to itself with > >action="" methode="get" > > yet I've a large PHP variable which I'd like to access afterwards as > well. Is this possible somehow? > > O. Wyss > > -- > PHP Gene