Voting

: three plus two?
(Example: nine)

The Note You're Voting On

glennh at webadept dot net
22 years ago
All the cool notes are gone from the site.

Here's an example of how to get all the variables passed to your program using the method on this page. This prints them out so you can see what you are doing.

<?php
while (list($key, $value) = each
(${"HTTP_".$REQUEST_METHOD."_VARS"}))
{
echo
$key." = ".$value." ";
}
?>

<< Back to user notes page

To Top