If you have a function which echos html such as
When you look at the HTML source of this result, it is indentated with however many tabs before the echo, making the HTML very untidy.
Is there any settings on apache to stop this? I like nice and tidy html.
Thx
PHP:
function bob()
{
echo '<b>woo</b>';
}
When you look at the HTML source of this result, it is indentated with however many tabs before the echo, making the HTML very untidy.
Is there any settings on apache to stop this? I like nice and tidy html.
Thx