Re: [PHP] really simple problem with GET

2003-03-12 Thread Hugh Danaher
Kevin, first, change your URL statement to: http://.../test.php?test=1 // the $ is not needed. second, use $test=$_GET['test'] to get the transferred value into $test. then, echo $test and see if it works. Hugh - Original Message - From: "Poon, Kelvin (Infomart)" <[EMAIL PROTECTED]> To:

Re: [PHP] really simple problem with GET

2003-03-12 Thread Ray Hunter
You form tag should be passing the get request to the php script. example: ... In test.php all should work now... -- Ray On Wed, 2003-03-12 at 11:04, Poon, Kelvin (Infomart) wrote: > Hi, > > I am sorry if the level of this question is too simple but I can't figure > out what's wrong. I w