I'm creating an overview with data from a database.
But in Chrome (and Safari and Opera)
The <td></td>
content starts on a new line, while Firefox and IE(8) display it on the same line.
Name Event: <td>'.mysql_real_escape_string(mysql_result($result, $i,"event_title")).'</td>
Max # Persons: <td>'.mysql_real_escape_string(mysql_result($result, $i,"max_participants")).'</td>
Total Guests: <td>'.mysql_real_escape_string($row['total_guests']).'</td>
Status Event: <td>'.$status.'</td>
Example:
Chrome:
Name Event:
Wedding
FireFox:
Name Event: Wedding
The same happens when I end every line with a <br>
or <br/>
Is there a (easy) workaround to fix this?