Jump to content

Side by Side tables


rusking

Recommended Posts

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?

look-1.png

 

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);
?> 

 

Link to comment
https://forums.phpfreaks.com/topic/217252-side-by-side-tables/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.