, Jam Warehouse (Pty) Ltd, South Africa
* @package presentation
*/
function startTable($border, $width) {
return "
";
}
function stopTable() {
return "
";
}
function tableRow($align, $bgcolor, $html) {
return "$html
";
}
function tableData($html) {
return "$html | ";
}
function startTableRowCell() {
return "| ";
}
function endTableRowCell() {
return " |
";
}
?>