hehe 🙂
before you try to use php you should learn a bit more html - it makes life lots easier.
first - the <tr> and <td> tags need 2 b inside <table> tags.
<tr> specifies a new row
<td> specifiec a new column
so try this for your code:
if ($rowsFound > 0) {
echo "<table>\n";
echo "<tr><td><b>Driver:</b></td>\n";
echo "<td><b>Speed:</b></td>\n";
echo "<td><b>Nome:</b></td></tr>\n";
while ($row = @mysql_fetch_array($result)) {
echo "<tr><td>".$row["driver"]."</td>\n";
echo "<td>".$row["speed"]."</td>\n";
echo "<td>".$row["nome"]."</td></tr>\n";
}
echo "</table>\n";
}
Of course this will only work if your MySQL queries are correct.