Re: [PHP] Check for well formed html

2007-08-07 Thread Richard Lynch
On Sun, August 5, 2007 6:16 am, tedd wrote: > I have a client who wants to include html tags in his CMS. > > I know that I can limit what tags he can use, but how can I check if > the text is well formed with the tags permitted before storing it in > his CMS? http://php.net/tidy -- Some people h

Re: [PHP] Check for well formed html

2007-08-06 Thread tedd
At 5:14 PM +0200 8/5/07, Tijnema wrote: On 8/5/07, tedd <[EMAIL PROTECTED]> wrote: Hi gang: I have a client who wants to include html tags in his CMS. I know that I can limit what tags he can use, but how can I check if the text is well formed with the tags permitted before storing it in

RE: [PHP] Check for well formed html

2007-08-05 Thread Kathleen Ballard
Tedd, Finally, I can give you an answer! :) You can use html tidy. I did this before the php tidy function was fully implemented, so I don't know the syntax for that. But using tidy from the command line you can set have it either correct errors (probably not what you want) or just have it retu

Re: [PHP] Check for well formed html

2007-08-05 Thread Tijnema
On 8/5/07, tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > I have a client who wants to include html tags in his CMS. > > I know that I can limit what tags he can use, but how can I check if > the text is well formed with the tags permitted before storing it in > his CMS? > > Cheers, > > tedd > Hav