On Saturday 01 February 2003 17:39, [EMAIL PROTECTED] wrote:
> Hello Julie
>
> Have you checked what is passed in your post / get request???
>
> A Simple way of doing this is using a script similar to this one
>
> <?PHP
> while(list($key, $value) = each($_POST)) // use $_GET for get
> request
> {
> echo '<br>'.$key.'='.$value; // this prints to the
> browser
> }
> ?>
A easier way to achieve the above is simply:
print_r($_POST);
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
Unix: Some say the learning curve is steep, but you only have to climb it
once.
-- Karl Lehenbauer
*/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php