Hi.
I'm retrieving negative values from my database.
However, whenever I'm going to echo them, they seem to evoke a "new line". That sucks.
Can anyone help me avoid that?
Here's the code:
while ($row = mysql_fetch_array($result,MYSQL_NUM)) {
echo "<tr><td>$row[0] to $row[1]</td>";
...
Result (example):
-
23
to
27
I already tried type casting into string, integer and the "htmlentities" construct; no result.
Thx in advance.
Deril