I meet a headache problem. there are too many Quotation marks in my code make me headache.

I tried both of these method, but all the way are make links broken. I cheked it in chrome, In elements, I find the source code like what I add after print($link);.

How to solve the problem? Thanks.

$str = 'I\'m very "shock"!';
$link=<<<EOT
<a Onclick="javascript('$str')" href="#">$str</a>'
EOT;
print($link); // <a onclick="javascript('I'm very " shock"!')"="" href="#">I'm very "shock"!</a>

OR

$str = 'I\'m very "shock"!';
$link = '<a Onclick="javascript(\''.$str.'\')" href="#">'.$str.'</a>';  
print($link); //<a onclick="javascript('I'm very " shock"!')"="" href="#">I'm very "shock"!</a>
link|improve this question

possible duplicate of Quotation marks in value of html tag attribute problem – outis Mar 20 at 9:23
feedback

2 Answers

up vote 0 down vote accepted

I would do this:

$link = '<a Onclick="javascript(\''.addslashes($str).'\')" href="#">'.$str.'</a>'; 
link|improve this answer
Sorry, I corrected a mistake in the code above. – Yottatron Jul 25 '11 at 22:51
feedback

You need to double-escape your quotes :

$str = 'I\\\'m very "shock"!';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.