On Mon, 25 Feb 2002 10:04:07 -0800
Steven Walker <[EMAIL PROTECTED]> wrote:

> Dear Batara,
> 
> There are global variables that serve this purpose. You must have 
> register_globals turned on:
> 
> http://www.php.net/manual/en/language.variables.predefined.php
> $_POST
> An associative array of variables passed to the current script via the 
> HTTP POST method. Automatically global in any scope. Introduced in PHP 
> 4.1.0.

Steven,

Thank you for the URL, since I am on 4.0.6 I think I will use:
$HTTP_POST_VARS
An associative array of variables passed to the current script via the
HTTP POST method.

$HTTP_GET_VARS
An associative array of variables passed to the current script via the
HTTP GET method.

--bk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to