Forum Moderators: coopster
the only tables i found how to build are when you are pulling data from a database and need to build around the amount of data pulled.
this is more basic than that...
do i just use:
print <table>.....etc.
?
$first_row_first_cell_content ="1";
$first_row_second_cell_content ="2";
$second_row_first_cell_content ="3";
$second_row_second_cell_content="4";
$third_row_first_cell_content ="5";
$third_row_second_cell_content ="6";
echo "<table><tr><td>";
echo $first_row_first_cell_content."</td><td>";
echo $first_row_second_cell_content."</td></tr><tr><td>";
echo $second_row_first_cell_content."</td><td>";
echo $second_row_second_cell_content."</td></tr><tr><td>";
echo $third_row_first_cell_content."</td><td>";
echo $third_row_second_cell_content."</td></tr></table>";
?>
<table>
ect....
<?php