Login   Register  
PHP Classes
elePHPant
Icontem

File: info.php3

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Devta Singh  >  Form auto Generator  >  info.php3  >  Download  
File: info.php3
Role: ???
Content type: text/plain
Description: example page that shows the data sent
Class: Form auto Generator
Author: By
Last change:
Date: 2001-02-06 21:08
Size: 208 bytes
 

Contents

Class file image Download
<?
print "<h2>Variables recogidas via \$HTTP_POST_VARS</h2>";
if(is_array($HTTP_POST_VARS)){
	while (list($clave,$valor)=each($HTTP_POST_VARS)){
		print "\n<BR><b>$clave</b> >>> <i>$valor</i>";
	}
}
?>