如何更改我的代码以在回声中显示“”而不是“?”

时间:2016-12-13 15:04:07

标签: php html quotes double-quotes

如何更改此代码:

echo "<button onclick='document.location='TEST1.php?auteurnr=$row[0]''> $row[voornaam] $row[achternaam]</button>";

显示这个:

<button onclick="document.location='test1.php?auteurnr=61'">

而不是这个:

<button onclick='document.location='TEST1.php?auteurnr=61''>

1 个答案:

答案 0 :(得分:1)

你的意思是角色逃脱?

echo "<button onclick=\"document.location='TEST1.php?auteurnr=$row[0]'\"> $row[voornaam] $row[achternaam]</button>";