PHP Classes

File: proccess.php

Recommend this page to a friend!
  Classes of Ivan Melgrati   iam_calendar   proccess.php   Download  
File: proccess.php
Role: Example script
Content type: text/plain
Description: Test file - Used to dump the POST vars sent by the test script
Class: iam_calendar
Display month calendars highlighting special days
Author: By
Last change:
Date: 17 years ago
Size: 641 bytes
 

Contents

Class file image Download
<?php
   
/**
    * This file dumps the POST vars sent by the form
    * @package IAM_Classes
    * @subpackage IAM_Calendar
    * @author Iván Melgrati <imelgrat@gmail.com>
    * @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>