Login   Register  
PHP Classes
elePHPant
Icontem

File: template/sample1.htm

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of unknown man  >  Gedar Template Engine  >  template/sample1.htm  >  Download  
File: template/sample1.htm
Role: Auxiliary data
Content type: text/plain
Description: sample template file
Class: Gedar Template Engine
Compiling template engine with plug-in support
Author: By
Last change:
Date: 2005-10-28 06:42
Size: 413 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Sample test</title>
  </head>

  <body>
    <table width="400px" align="center">
{foreach ($list as $l)}
	<tr>
{foreach ($l as $key=>$v)}
	  <td bgcolor='#{cycle (name="colorVal" elements="e0e5e9,e7eaf0,f0f5f9")}'>{$key}</td>
	  <td>{$v}</td>
{/foreach}
	</tr>
{/foreach}
    </table>
  </body>
</html>