[nycphp-talk] Passing some form values through to a redirected page...
Felix Marte
fmarte at verizon.net
Sat Feb 1 11:07:26 EST 2003
If your referring page is a form of some sort, you can also consider
using hidden input fields to pass the data to the forwarded page via the
POST method.
<input type=hidden name=hiddenvar value="Hidden Value">
Would result in $hiddenvar being available in the forwarded page with
the string "Hidden Value".
This is straight out of a book so I don't know if there are some
practical things to avoid in doing this, nor if it is possible to use
without a form being submited on the referrer page.
Felix.
-----Original Message-----
From: Webapprentice [mailto:webapprentice at onemain.com]
Sent: Saturday, February 01, 2003 2:34 AM
To: NYPHP Talk
Subject: Re: [nycphp-talk] Passing some form values through to a
redirected page...
Thanks Jerry.
Now I have to learn about sessions. *laughs*
--Stephen
Jerry Kapron wrote:
>Re. my previous message
>
>Corrected function:
>
>function post_save() {
> if(count($_POST)) {
> $_SESSION['post_around'] = $_POST;
> }
>}
>
>
>Jerry
>
>--
>42.7% of all statistics are made up on the spot.
>
>
>
>-----Original Message-----
>From: Jerry Kapron <nyphp at newageweb.com>
>Subject: Re: [nycphp-talk] Passing some form values through to a
>redirected page...
>
>
>
>
>>This is a simplified version of what I do to pass POST data:
>>
>>These two functions are included in all my scripts:
>>
>>function post_save() {
>> if(count($_POST))
>>
>> $_SESSION['post_around'] = $_POST;
>> }
>>}
>>
>>
>>
>
>
>
>
>
>
>
>
>
>
--- Unsubscribe at http://nyphp.org/list/ ---
More information about the talk
mailing list