Login   Register  
PHP Classes
elePHPant
Icontem

File: servlet_example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ryan Petrain  >  Servlet  >  servlet_example.php  >  Download  
File: servlet_example.php
Role: ???
Content type: text/plain
Description: a sample php file showing a working example of the servlet class
Class: Servlet
Author: By
Last change:
Date: 2001-12-17 10:41
Size: 2,251 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?
//Include class files
include( "./class.servlet.php");


//Create instances of needed classes
$tester = new Servlet();


?>
<html>
<head>
<title>Servlet Class Test Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<?
//Display Banner
$tester->SiteBanner("<font color='white'>Cell One</font>","<font color='white'>You can have up to 4 cells in the banner</font>");
?>
<table summary="Main formatting table" cols="3" width='100%'>
<tr>
 <td width="25%" valign="top">
  <!-- left column -->
  <table cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td valign="top">
    <?
		   //Create a SimpleBox
	    $tester->SimpleBox("Left Box One","","Body Content");
    ?>
		<br>
		<?
		   //Create a SimpleBox
	    $tester->SimpleBox("Left Box Two","","Body Content");
    ?>
		<br>
		<?
		   //Create a SimpleBox
	    $tester->SimpleBox("Left Box Three","A SubTitle","This is the body", "100%");
    ?>
    </td>
  </tr>
  </table>
 </td>
 <td width="50%" valign="top">
   <!-- Middle column -->
   <table cellpadding="0" cellspacing="0" width="100%">
   <tr>
    <td valign="top">
    <?
		  //Create a DeluxeBox
      $tester->DeluxeBox("DeluxeBox One","This is the place to display contents<br><br><br><br><br><br><br><br><br><br><br>","#e0e0e0",'','',"auto","auto","auto");
    ?>
		<br>
		<?
		   //Create a DeluxeBox
      $tester->DeluxeBox("DeleuxeBox Two","This is the place to display contents<br><br><br><br><br><br><br><br><br><br><br>","#e0e0e0",'','',"auto","auto","auto");
    ?>
	  </td>
   </tr>
   </table>
	</td>
  <td width="25%" valign="top">
   <!-- right column -->
   <table cellpadding="0" cellspacing="0" width="100%">
   <tr>
     <td valign="top">
     <?
		     //Create a SimpleBox
	      $tester->SimpleBox("Right Box Two","A SubTitle","This is the body", "100%");
     ?>
		 <br>
		 <?
		     //Create a SimpleBox
	      $tester->SimpleBox("Right Box Two","A SubTitle","This is the body", "100%");
     ?>
     </td>
   </tr>
   </table>
	</td>
</tr>
</table>

<?
//Display footer
$tester->SiteFooter();

?>	
</body>
</html>