PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Kostas Theodorou   CHtmlTable   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: CHtmlTable
Create HTML tables programmatically
Author: By
Last change:
Date: 17 years ago
Size: 199 bytes
 

Contents

Class file image Download
<?
include_once("ctable.php");
$tbl=new CTable("border=1");
$tbl->tr();
$tbl->td("Hello","bgcolor=#ffffff","style='color:#000000'");
$tbl->tr();
$tbl->td("Developer");
print(
$tbl->html());
?>