Thank you all.
I have made it working excellent for me now.
The solution is here: http://phparch.cn

On Tue, May 13, 2008 at 1:34 PM, Robert Cummings <[EMAIL PROTECTED]>
wrote:

>
> On Tue, 2008-05-13 at 01:27 -0400, Robert Cummings wrote:
> > 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 )
> >
> >     //...
> > ?>
>
> Whoops... noticed some bugs there :B
>
> <?php
>
>    $html = preg_replace( '#^.*<body>#Uis', '', $html );
>    $html = preg_replace( '#</body>.*$#Uis', '', $html );
>
> ?>
>
> Cheers,
> Rob.
> --
> http://www.interjinn.com
> Application and Templating Framework for PHP
>
>


-- 
Regards,
Shelley

Reply via email to