RE: [PHP] FORM RELATED QUESTION - I

2002-03-05 Thread Johnson, Kirk
CTED] > Subject: Re: [PHP] FORM RELATED QUESTION - I > > > Yes I did use $HTTP_POST_VARS but it removes duplicate > values. Say if > there are two hidden variables > > 1. order= 10 > 2. order= 20 > > I get order=20 the last one but i want both. I need both

Re: [PHP] FORM RELATED QUESTION - I

2002-03-05 Thread karthikeyan
lt;[EMAIL PROTECTED]> Sent: Tuesday, March 05, 2002 9:18 AM Subject: Re: [PHP] FORM RELATED QUESTION - I > > On Tuesday 05 March 2002 10:39, karthikeyan wrote: > > > how do i accomplish the same in php. > > > > I have one solution using GET method but I would really l

Re: [PHP] FORM RELATED QUESTION - I

2002-03-04 Thread Jason Wong
On Tuesday 05 March 2002 10:39, karthikeyan wrote: > how do i accomplish the same in php. > > I have one solution using GET method but I would really like to have it > in POST because I am passing lots of values to this php file. > > == > $ar=explode('&',$QUERY_STRING); > >

[PHP] FORM RELATED QUESTION - I

2002-03-04 Thread karthikeyan
Hi Everybody, In my somename.cgi file there are few hidden fields like this with the tag: Now in my php file (somename.php) i somehow need to get that hidden name and value and put it inside my php form like this : Note : I cannot change