|
Posted by Tom Rogers on 09/28/46 11:18
Hi,
TR> What I do to overcome this is in PHP do:
TR> $content = rawurlencode($content);
TR> and in the html javascript:
TR> unescape("$content");
I didn't do that very well, your code would look something like:
<li>
<a href="#"
onclick='document.form1.how.value=unescape("<?php rawurlencode($row['how'])?>");
document.form1.factor.value=unescape("<?php rawurlencode($row['factor']))?>");
document.form1.submit();'><?php htmlentities($row['factor'])?>
</a>
</li>
--
regards,
Tom
Navigation:
[Reply to this message]
|