" . $TblData[$x][info] . "\n";
}
}
else
{
$TblRow .= "\t\tTblOutAll .= $TblRow;
}
function EndTbl(){
$this->TblOutAll .= "\n\n";
$this->TblEndCheck = true;
}
function TblPrint(){
if($this->TblStartCheck == true && $this->TblEndCheck == true)
{
return $this->TblOutAll;
}
else
{
$debug = $this->TblOutAll;
return "\n\nOne or more of the required functions was either not called or not called correctly\n\n Here is what was is in your table\n " . htmlspecialchars($this->TblOutAll) . " \n";
}
}
}
?>
|