rusking Posted October 29, 2010 Share Posted October 29, 2010 I have a few tables in php and want them to be side by side instead of under each other like below. I have spent about 2 days trying to figure it out, Anyone got a clue? This is the code im using <?php $con = mysql_connect("localhost","user","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("People", $con); $result = mysql_query("SELECT * FROM wang"); echo "<table border='1'> <tr> <th>Wang Total Report</th> </tr>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['got'] . "</td>"; echo "</tr>"; } echo "</table>"; $result2 = mysql_query("SELECT * FROM miah"); echo "<table border='1'> <tr> <th>Miah Total Report</th> </tr>"; while($row = mysql_fetch_array($result2)) { echo "<tr>"; echo "<td>" . $row['got'] . "</td>"; echo "</tr>"; } echo "</table>"; $result3 = mysql_query("SELECT * FROM vinc"); echo "<table border='1'> <tr> <th>Vinc Total Report</th> </tr>"; while($row = mysql_fetch_array($result3)) { echo "<tr>"; echo "<td>" . $row['got'] . "</td>"; echo "</tr>"; } echo "</table>"; $result4 = mysql_query("SELECT * FROM ketarie"); echo "<table border='1'> <tr> <th>Ketarie Report</th> </tr>"; while($row = mysql_fetch_array($result4)) { echo "<tr>"; echo "<td>" . $row['got'] . "</td>"; echo "</tr>"; } echo "</table>"; mysql_close($con); ?> Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/ Share on other sites More sharing options...
litebearer Posted October 29, 2010 Share Posted October 29, 2010 Perhaps use DIVs Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/#findComment-1128205 Share on other sites More sharing options...
rusking Posted October 29, 2010 Author Share Posted October 29, 2010 Im a real big noobe, most of this was pasted together from things i read. Im not entirely sure what a DIV is Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/#findComment-1128206 Share on other sites More sharing options...
jcbones Posted October 30, 2010 Share Posted October 30, 2010 Wrap each <table></table> in a division element. Example echo '<div style="float:left"><table>'; //the while statement. echo '</table></div>'; Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/#findComment-1128218 Share on other sites More sharing options...
rusking Posted October 30, 2010 Author Share Posted October 30, 2010 Thank you jcbones. I will try this Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/#findComment-1128275 Share on other sites More sharing options...
rusking Posted October 30, 2010 Author Share Posted October 30, 2010 You did it!!! thank you very much! Quote Link to comment https://forums.phpfreaks.com/topic/217252-side-by-side-tables/#findComment-1128288 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.