I was successfully understanding this until I got caught up on my displayed graph on my webpage. Attached is a picture of the graph. It seems that all of the data is pushed back by a single space and leaving the ID column totally out of the chart. Is there any recommendations of what I could possibly do?
When I ran the snippet on this site, it portrays a empty box under the last slot. I know this has to lead to my problem. I do understand that my data won't show up on here because it is connected to "connection.php".
I strongly feel as if this code is creating the problem.
<html>
<?php
// Include connection.php
include("connection.php");
$sql = "SELECT *
FROM CARS";
$result = mysql_query($sql,$con);
//echo Sresult;
?>
<table border =1>
<tr>
<td> ID </td>
<td> Make </td>
<td> Model </td>
<td> Year </td>
<td> Mileage </td>
<td> First Name </td>
<td> Last Name </td>
<td> Email </td>
</tr>
<?php
//whileloop
while($row = mysql_fetch_array($result)){
?>
<tr
<td>
<?php echo $row['ID'];?>
</td>
<td>
<?php echo $row['MAKE'];?>
</td>
<td>
<?php echo $row['MODEL'];?>
</td>
<td>
<?php echo $row['YEAR'];?>
</td>
<td>
<?php echo $row['MILE'];?>
</td>
<td>
<?php echo $row['FNAME'];?>
</td>
<td>
<?php echo $row['LNAME'];?>
</td>
<td>
<?php echo $row['EMAIL'];?>
</td>
</tr>
<?PHP
}
?>
</table
</html>