On Thu, 2004-10-28 at 09:28 +0530, Zareef Ahmed wrote: > Hi, > What are you trying to do? If you want to get the values of query > string they will be available in $_GET array. > > Try > > Print "<pre>"; > print_r ($_GET); > Print "</pre>"; >
Yeah, as a habit I usually have a function called something like debug()
function debug($arg)
{
print "<pre>";
print_r($arg);
print "</pre>";
}
debug($_GET);
try not to use capitalized P in print...
-Robby
--
/***************************************
* Robby Russell | Owner.Developer.Geek
* PLANET ARGON | www.planetargon.com
* Portland, OR | [EMAIL PROTECTED]
* 503.351.4730 | blog.planetargon.com
* PHP/PostgreSQL Hosting & Development
* --- Now supporting PHP5 and PHP4 ---
****************************************/
signature.asc
Description: This is a digitally signed message part

