PDA

View Full Version : Sending data through querstring


Papy
September 8th, 2004, 11:02 AM
Hi,

Im facing a problem while sending parameters through querystring fron one .php page to other.

The problem is that the namevalue pair sent are visible in the address bar of the browser which i dont want ..like this

http://www.comsdev.com.pk/user/welcomepdc....ed&lname=Zubair (http://www.comsdev.com.pk/user/welcomepdc.php?success=true&fname=Ahmed&lname=Zubair)

can any one suggest any other way so that these values are not visible in address bar???

the querystring from where values are passed is like...

HEADER( "location: welcomepdc.php?success=true&fname=$fname&lname=$lname" ) ;


Thanx in advance.

Ned Seagoon
September 8th, 2004, 03:41 PM
Hi Papy

Use Post instead of Get as the method. BF