Hi all Gurus out there, i need your help to give me sample of program which use the query string parameter. so that i can understand how to create and retrieve query string parameter.....
thanks a lot in advance Gurus......
A query string looks like this:
http://www.example.com/foo.php?flavor=blue&color=cherry
To access the values within php,
echo 'flavor is' , $GET['flavor']; echo 'color is', $GET['color'];
This is explained in the manual in the chapter entitled "Variables."
Thanks a lot. but how if i want to call another .php program without using Form method and i want to pass the value to the php program and receive back the reply variable ?
pls kindly give your advise.
thanks Guru : )