View Single Post
Old 11-26-2012, 08:15 PM   PM User | #3
stevenryals
New Coder

 
Join Date: Jul 2012
Posts: 60
Thanks: 4
Thanked 0 Times in 0 Posts
stevenryals is an unknown quantity at this point
This is a great idea..

what i have now is a bit simpler..

Code:
while($row = mysql_fetch_row($result))
{
    echo "<tr>";
    echo "<td> $rownumber </td>";
    foreach($row as $cell)
        echo "<td  align='center' border='1' bordercolor=black>$cell</td>";
    $rownumber++;    
    
    echo "</tr>";
}
I'll see what i can do with what you have above, but i'd like to see what the 2x queries structure may look like as well..

Maybe this thread should be moved to the SQL forum?
stevenryals is offline   Reply With Quote