On 2/28/06, Dinesh Joshi <[EMAIL PROTECTED]> wrote:
>
> <?
>    echo '<pre>';
>    print_r( $_GET );
>    echo '</pre>';
> ?>
>
> put that in index.php and call it with different query strings for eg:
>
> http://foobar.com/index.php?a=1&b=2&c=3
>
> and see what you get ;)
>

I get this when I send a query string like the one you suggested...

Array
(
    [a] => 1
    [b] => 2
    [c] => 3
)



and this when no query string is entered...

Array
(
)


I think Anurag's answer has solved my problem. Thanks to all for your
replies. Will get back to you ppl for any more queries regarding PHP in some
time. :-)
--
Regards,
Sanket Medhi.
--
http://mm.glug-bom.org/mailman/listinfo/linuxers

Reply via email to