A PHP loop I'm using generates a table, but in the first cell the HTML has huge gaps in it!
Code:
<td>
6' 2" </td>
Here is the loop Im using
PHP Code:
$sql=mysql_query("SELECT * FROM profile WHERE name ='$model'"); while($row=mysql_fetch_array($sql)) { echo $row['heightft']."' "; echo $row['heightin'].'"'; }