Don Alexander Eckford's $REQUEST[] Array Example:
Be careful using the $_REQUEST[] Array because of the order that PHP places the GET and POST variables.
In addition, it might be a security concern in that it is not clear where the data came from that's found in the $_REQUEST[] array. It may have been provided via a $_GET[] or a $_POST[]. As such, it is usually "best" to use variables provided by GET[] and POST[] directly and not use $_REQUEST[].
Results:
$_POST Array()
Array ( )
$_GET Array()
Array ( )
$_REQUEST Array()
Array ( )