How would i go about decompress a html file in php?
The html file is compressed by removing spaces and new lines i cant use the php tidy function as i do not have it insatlled on my server is there any other way of getting around it?
e.g
HTML
<html><title></title><body></body></html>
I need it to look like the following
<html>
<title></title>
<body>
</body>
</html>
Thank you,