On Tue, 2008-05-13 at 12:28 +0800, Shelley wrote:
> Maybe I didn't use that tidy correctly.
> I don't want html, head, body things. Just parsed string.
So strip them...
<?php
// ...
tidy_parse_string( $html );
tidy_clean_repair();
$html = tidy_get_output();
$html = preg_replace( '#^.*<body>#Uis', '', $html )
$html = preg_replace( '#</body>#Uis', '', $html )
//...
?>
Cheers,
Rob.
--
http://www.interjinn.com
Application and Templating Framework for PHP
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php