how to add query string

how to add query string

am 25.08.2007 08:29:56 von Asim

--0-1647978847-1188023396=:15177
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

Hi

can anyone tell me how to add query string in address bar for next php page


how to explode or seperate it

i need a clear working example?


byue






Asim Jamil - 0092 345 4025907, Pakistan

---------------------------------
Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and lay it on us.
--0-1647978847-1188023396=:15177--

Re: how to add query string

am 25.08.2007 13:57:53 von Piotr Pluciennik

--0-1548238047-1188043073=:1540
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

Hi,

place a html anchor with required parameters in your html or html template file:

....

....

then invoking above link, in your phpage.php you will get:

value1 accessible via $_GET['param1']
value2 accessible via $_GET['param2']
value3 accessible via $_GET['param3']

for example: echo "Value1 = ".$_GET['param1']; will display value of param1.

HTH, regards
Piotr

Asim wrote: Hi

can anyone tell me how to add query string in address bar for next php page


how to explode or seperate it

i need a clear working example?


byue






Asim Jamil - 0092 345 4025907, Pakistan

---------------------------------
Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and lay it on us.

--0-1548238047-1188043073=:1540--