<?php    
 
    /**
 
    * This file dumps the POST vars sent by the form
 
    * @package IAM_Classes  
 
    * @subpackage IAM_Calendar    
 
    * @author Iván Melgrati <[email protected]>
 
    * @version 1.0
 
    */
 
?>
 
<HTML>
 
<HEAD>
 
<link rel="stylesheet" type="text/css" href="iam_styles.css" />
 
<TITLE>IAM_Calendar - A HTML Calendar Generator
 
</HEAD>
 
<BODY>
 
<P class="monthHeaderStyle">This is just a dump of the data sent by the form......</P>
 
<table align="center">
 
<tr><td>
 
<?php
 
foreach ($_POST as $i=>$val) 
 
    echo "<tr><td align=\"center\">".$i."<BR />".$val."</td></tr>";
 
?>
 
</td></tr></table>
 
</BODY>
 
</HTML> 
 
 
 |