>what is php's request object?
>like in ASP - Request("variable")
$_REQUEST['variable']
Or, if you want to distinguish between GET and POST:
$_GET['variable']
$_POST['variable']
In the future, if you're not sure where/how PHP is going to give you data,
this function will *TELL* you:
<?php phpinfo();?>
Throw that into any script at any point, and it will spew out everything you
could possibly need to know about your variables.
--
Like Music? http://l-i-e.com/artists.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php