Posted by Hermann.Richter on 10/07/06 21:51
Is there any way to remove automatically all blank chars from the html
sent to the client??
Example:
----------------------------------------------------------------
<?
echo "HTML tags here<br>" ;
?>
more HTML here
<div>
<div>
Some text
</div>
</div>
<?
----------------------------------------------------------------
after running this php script the client should receive:
----------------------------------------------------------------
HTML tags here<br>
more HTML here
<div>
<div>
Some text
</div>
</div>
----------------------------------------------------------------
Is there any option in PHP to do this automatically??
Thanks in advance.
[Back to original message]
|