[PHP] Re: Query String Name ?

2001-07-26 Thread Yasuo Ohgaki
Use array. test.php?name[]=joename[]=bob You'll get array name has joe,bob. Or parse query string by yourself. -- Yasuo Ohgaki A [EMAIL PROTECTED] wrote in message 008801c115bb$cad13360$4301a8c0@abe">news:008801c115bb$cad13360$4301a8c0@abe... Hi there, is there any way to access two

[PHP] RE: Query String Name ?

2001-07-26 Thread Miroslav Hudk
Hi! I think, that you could solve this problem by parsing the querystring at own... Try out this code: ?php //Parse the query string $qs = $QUERY_STRING; $parsed1 = Explode(, $qs); $c = 0; foreach ($parsed1 as $p) {