You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple HTML formatter.
Example:
<?php
include_once('format.php');
$html = 'BIG STRING FULL OF HTML';
$format = new Format;
$formatted_html = $format->HTML($html);
echo $formatted_html;