The HTML output of my php scripts are all on one line.
How do I make the output look normal? Ex:
<table>
<tr>
<td>Text</td>
</tr>
</table>
Instead of:
<table><tr><td>Text</td></tr></table>
I have tried using separate echo statements, but that doesn't work.
Thanks,
Duncan