Em Terça 27 Março 2007 11:17, Chris Carter escreveu:
> Hi,
>
> I have retrieved 4 values from database. Out of which 3 are displayed on
> the same page and one variable, which is email address, needs to be carried
> to the next page through a hyper link, the next page is actually a web
> form. I ca
Chris Carter wrote:
session_start();
session_register ("tamma");
$HTTP_SESSION_VARS ["tamma"] = $email;
Use $_SESSION. HTTP_SESSION_VARS is deprecated and hasn't been used
since PHP 4.0.6 (or rather, shouldn't have been)
You don't need session_register().
On the webform:
$HTTP_SESSIO
On Mar 27, 2007, at 9:17 AM, Chris Carter wrote:
Hi,
I have retrieved 4 values from database. Out of which 3 are
displayed on the
same page and one variable, which is email address, needs to be
carried to
the next page through a hyper link, the next page is actually a web
form. I
can do
Hi,
I have retrieved 4 values from database. Out of which 3 are displayed on the
same page and one variable, which is email address, needs to be carried to
the next page through a hyper link, the next page is actually a web form. I
can do this by either transferring that variable through query st
4 matches
Mail list logo