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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.