Re: [PHP] how to process URL parameers

2002-04-05 Thread Wo Chang
Dear PHPers, Thanks for the extra hands! They all work!! --Wo - Original Message - From: Erik Price [EMAIL PROTECTED] To: Wo Chang [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, April 05, 2002 10:00 AM Subject: Re: [PHP] how to process URL parameers On Friday, April 5

Re: [PHP] how to process URL parameers

2002-04-05 Thread Erik Price
On Friday, April 5, 2002, at 10:36 AM, Wo Chang wrote: So, if I want to include multiple parameters, I'll use something like: ?a=1?b=2 right? No, actually in the querystring the ? only serves to separate the URL from the querystring. So you can only use it once, immediately after the

Re: [PHP] how to process URL parameers

2002-04-05 Thread Wo Chang
] how to process URL parameers On Friday, April 5, 2002, at 10:36 AM, Wo Chang wrote: So, if I want to include multiple parameters, I'll use something like: ?a=1?b=2 right? No, actually in the querystring the ? only serves to separate the URL from the querystring. So you can only use

Re: [PHP] how to process URL parameers

2002-04-05 Thread Lee Doolan
Erik == Erik Price [EMAIL PROTECTED] writes: [. . .] Erik There is another way, it's a bit more involved. You open a Erik socket with the server and directly send the data as POST Erik data. This allows you to avoid having to bother with a Erik