Jun 13
To automaticaly cleanup and repair xhtml code (ex. from textarea or input tag) use Tidy extesnion for PHP.
Sample broken code which can be fixed
<p>ala <b> ma kota & psa<br />Lorem ipsum
to valid XHTML:
<p>ala <b> ma kota & psa<br />Lorem ipsum</b></p>
Simple function which repair wrong code: Continue reading »