Chrome put content in <td> on a new line. FF Doesn't

BWEmbommadrorma

New Member
I'm creating an overview with data from a database.But in Chrome (and Safari and Opera) The \[code\]<td></td>\[/code\] content starts on a new line, while Firefox and IE(8) display it on the same line.\[code\]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>\[/code\]Example:
Chrome:
Name Event:
Wedding


FireFox:
Name Event: WeddingThe same happens when I end every line with a \[code\]<br>\[/code\] or \[code\]<br/>\[/code\]Is there a (easy) workaround to fix this?
 
Back
Top