On 2/27/06, Anurag anurag@gnuer.org wrote:
$_GET is an array which keeps track of query string, not a method.
<?php if ($_GET) print_r($_GET); else echo "There is no query string"; ?>
You could then access individual elements in query string by using echo $_GET['search'];
Worked, thanks a lot! -- Regards, Sanket Medhi.