* @desc HTML Table - native style
*/
$cols = array('', 'X', 'Y', 'Z');
$rows = 3;
$html = '
';
foreach($cols as $col)
{
$html .= '';
}
unset($col);
$html .= '';
foreach($cols as $col)
{
$html .= "| {$col} | ";
}
unset($col);
$html .= '
';
for($r = 1; $r <= $rows; $r++)
{
$html .= '';
foreach($cols as $key => $col)
{
$html .= '| ' . (($key > 0) ? rand(1, 9999) : $r) . ' | ';
}
unset($col);
$html .= '
';
}
$html .= '
';
echo $html;