| Recommend this page to a friend! |
| Classes of Daniel Kushner | > | HTTPPost | > | postCollector.php | > | Download | ||
|
|||||||||||||||||||||
<?php
if(is_array($HTTP_POST_VARS) && count($HTTP_POST_VARS) > 0) {
echo "And here are the results of your post:<br>";
print_r($HTTP_POST_VARS);
}
else {
echo 'Oops, nothing in $HTTP_POST_VARS?<br>';
}
?>
|