Topic: Configuration problem with example
dear patnaik,
your program helped me a great deal in speeding the development of my new website, because when it comes to processing and cleaning input you want the best there is... so thanks alot for making it available to every one.
i have couple of questions if i may:
i set the configuration as following in my website:
'balance'=>1, 'cdata'=>1, 'clean_ms_char'=>0, 'comment'=>1,
'css_expression'=>0, 'elements'=>'a, br, b, blockquote, em, font,
li, ol, p, pre, s, big, small, span, strike, strong, sub, sup, tt, u, ul',
'hexdec_entity'=>0, 'keep_bad'=>0, 'no_deprecated_attr'=>2,
'make_tag_strict'=>2, 'safe'=>1, 'tidy'=>1, 'valid_xhtml'=>1,
'deny_attribute' => 'on*'
$output = htmLawed(trim($input) ,$html_config_full); and this is the html code with all possible attributes i want to allow:
<p align="left" dir="ltr">I like <sup>to</sup> see a <span style="font-family: courier new,courier;"><strike>man</strike> proud of <span style="color: #008000;">the place i</span>n</span> which <sub>he</sub> <span style="font-size: x-large;">lives</span>.</p>
<p> </p>
<p align="right" dir="rtl">I <span style="font-size: x-large;">like to <u>see</u> a <b>man</b> <span style="color: #993366;">live so that his place</span> will be proud</span> of <a href="http://ted.com">him</a></p>
<ol>
<li>thank you</li>
<li>mr patnaik</li>
<li>For this Life Saving program</li>
</ol>
<p align="center"><span style="color: #993366;"><b>The best thing about the future is that it comes only one day at a time</b></span></p>
<ul>
<li>all the best,</li>
<li>ahmed</li>
</ul>and this is the tinymce html allowed
"a[href]," +
"b[],"+
"blockquote[],"+
"em[],"+
"li[dir],"+
"ol[dir],"+
"ul[dir],"+
"p[align|dir],"+
"pre[],"+
"s[],"+
"small[],"+
"big[],"+
"span[style|text-align|dir|font-color|font-weight|font-family|color|direction],"+
"strike[],"+
"strong[],"+
"sub[],"+
"sup[],"+
"tt[],"+
"u[]",but the resutlt i get is this:
<p dir="" style="text-align: ;">I like <sup>to</sup> see a <span style=""><span style="text-decoration: line-through;">man</span> proud of <span style="">the place i</span>n</span> which <sub>he</sub> <span style="">lives</span>.</p>
<p> </p>
<p dir="" style="text-align: ;">I <span style="">like to <span style="text-decoration: underline;">see</span> a <b>man</b> <span style="">live so that his place</span> will be proud</span> of <a href="">him</a></p>
<ol>
<li>thank you</li>
<li>mr patnaik</li>
<li>For this Life Saving program</li>
</ol>
<p style="text-align: ;"><span style=""><b>The best thing about the future is that it comes only one day at a time</b></span></p>
<ul>
<li>all the best,</li>
<li>ahmed</li>
</ul>plese help,
where did i go wrong!
because really i just learned php and mysql recently i'v been studying for a year and half now just to make my own website the way i want it.
regards,