RE: [PHP] Re: REQUEST QUESTION

2002-03-07 Thread Ford, Mike [LSS]
-Original Message- From: karthikeyan [mailto:[EMAIL PROTECTED]] Sent: 07 March 2002 17:52 [] I am very sure that there must be some solution to this but I don't know how to do this in PHP. I have one solution using GET method but not with POST. Then you're very

Re: [PHP] Re: REQUEST QUESTION

2002-03-07 Thread karthikeyan
Hi, I use PHP 4.0.6, I am not sure about $_POST but $HTTP_POST_VARS removes duplicate entries. As far as $QUERY_STRING is concerned well I knew it could do it but I want to use POST method. Not that happy knowing that PHP doesn't support this feature when Java and CGI-Perl can. Regards,

Re: [PHP] Re: REQUEST QUESTION

2002-03-05 Thread karthikeyan
Hi Thanx, --- input type=hidden name=order [1] value=10 input type=hidden name=order [2] value=20 On the nest page you just do echo The first order is .order[1]. and the second order is .order[2]; -- But that is what I cannot do. I cannot change the name of the order

Re: [PHP] Re: REQUEST QUESTION

2002-03-05 Thread Jason Wong
On Wednesday 06 March 2002 03:42, karthikeyan wrote: Hi All, I have worked in Java and Cgi and there I was able to do this very easily. Infact i have one solution to this using GET method in PHP but I want this using POST. As you have said, using POST overwrites duplicate variables. This