How do I remove blank lines from HTML?
I want to remove the blank lines between my HTML and PHP code when I view source it you can see where the PHP code goes. I want to change this.
<table>
<tr>
<th align='right'>Service Area:</th>
<th align='right'>Union</th>
<th align='right'>South Carolina</th>
</tr>
</table>
to this<table>
<tr>
<th align='right'>Service Area:</th>
<th align='right'>Union</th>
<th align='right'>South Carolina</th>
</tr>
</table>
Comments