|
Posted by Ja NE on 10/26/05 12:11
sometimes people just forget to close formating tag while writing
message in forum (or enywhere else) so I wrote those lines (for <b>, <i>
and <a> tags)
$i_open = substr_count($tekst, "<i>");
$i_close = substr_count($tekst, "</i>");
if($i_open > $i_close) {
$tekst = "$tekst </i>";
}
but... I would like to have proper nesting, ie: if someone write
"<b>some text <i>without closing tags"
and if my script have order like
if($b_open > $b_close)
if($i_open > $i_close)
if($a_open > $a_close)
I will have unproper nesting:
"<b>some text <i>without closing tags </b> </i>"
Is there some method to "see" which tag should came first?
--
Ja NE
http://fotozine.org/?omen=janimir
--
Navigation:
[Reply to this message]
|