wald wrote:
[color=blue]
> I've set up an agenda-like system where "admins" can enter upcoming
> events, including a description of the event. This description can
> include HTML formatting and is entered in a <textarea>.[/color]
OT: forget "HTML formatting" -- there's no such thing.
[color=blue]
> The problem I'm facing is this: suppose an "admin" enters a description,
> but one of the attributes of a HTML tag doesn't have a closing double
> quote.[/color]
[ ... ]
[color=blue]
> I'm thinking of a few possibilities to solve this:
> * some sort of a regex check on the description, before it is submitted
> to the DB[/color]
AIUI regular expressions alone can't accomplish that.
[color=blue]
> * simply counting the number of double quotes between < > delimiters,
> the number should be even[/color]
No, that won't work either. There's no requirement in HTML for a
start-tag to contain an even number of double quotes.
[ ... ]
[color=blue]
> What do you experts think? Any suggestions?[/color]
I suggest you reconsider interpreting the data as HTML. What happens
when a naughty "admin" (I suppose the quotes are necessary) enters
<IMG src="http://domain.example/rudepic">?
If you insist though, consider using a parser to catch those syntax
errors; apparently HTML Tidy,
http://www.w3.org/People/Raggett/tidy/ ,
can flag missing quote marks. Catching semantic mistakes might be
harder.
Have a great weekend sir!
--
Jock