Login   Register  
PHP Classes
elePHPant
Icontem

File: postCollector.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Daniel Kushner  >  HTTPPost  >  postCollector.php  >  Download  
File: postCollector.php
Role: ???
Content type: text/plain
Description: Used for the example
Class: HTTPPost
Author: By
Last change:
Date: 2002-04-19 02:15
Size: 226 bytes
 

Contents

Class file image 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>';
}
?>