Hi,

I solved the problem by using htmlspecialchars and passing it ENT_QUOTES.
But I'll try your way as a more general way too.  Thanks


-----Original Message-----
From: Tom Rogers [mailto:[EMAIL PROTECTED]
Sent: Friday, June 10, 2005 8:36 PM
To: php-general@lists.php.net
Cc: Leila Lappin
Subject: Re[2]: [PHP] Problems escaping apostrophe, please help


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

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to