I have an multidimentional array that i have placed into a table...
it all works but...??! How would you I add something in the first cell and move everything along a cell?PHP Code:$count_echo = 0
echo '<tr>'
while($row = mysql_fetch_array($result)){
$count_echo++;
echo "<td>$row[1]</td>";
if ($count_echo > 3) {
echo "</tr>";
echo "<tr>";
$count_echo = 0;
colspan="x"
lets me place it on top but not inside![]()




Reply With Quote