Re: passing arguments within php pages - Mailing list pgsql-php

From knut.suebert@web.de
Subject Re: passing arguments within php pages
Date
Msg-id 20020215212956.GB2368@web.de
Whole thread Raw
In response to passing arguments within php pages  (arun kv <arun@library.iisc.ernet.in>)
List pgsql-php
arun kv schrieb:
> hai,
>      how to pass an argument between php pages as a link ( without using
> forms). i should get the agument as a value (string) in my current page
> from previous page from where i had created link.

Hello,

that seems to be totally OT here. But you can use basic HTML on your
"previous page"

   printf("<a href='current.php?ARG=%s'>Link</a>", $value);

to get it on the "current page":

   printf("ARG has value: %s", $ARG);

See

  http://www.php.net/manual/en/html/language.variables.predefined.html

for HTTP_GET_VARS and HTTP_POST_VARS, too. If you use an version of
PHP older than v4.0.3, look for track_vars at the same URL, too.

If the string contains other characters than 0-9a-zA-Z see

  http://www.php.net/manual/en/html/function.urlencode.html

Maybe session handling could be interesting for you:

  http://www.php.net/manual/en/ref.session.php

Bye,
K.



pgsql-php by date:

Previous
From: SteveFice@bedsprobation.gov.uk
Date:
Subject: Pg_pconnect fails...
Next
From: arun kv
Date:
Subject: help