前端之家收集整理的这篇文章主要介绍了
php – html标记属性问题值的引号,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<?PHP
$myname = 'my name have quotation marks " <- here';
?>
我试着:
<input type="text" name="newnameproposition[<?PHP echo $myname ?>]">
由于以下原因,html有一点问题:
name="newnameproposition[my name have quotation marks " <- here]"
任何人都可以遇到这种问题吗?
原文链接:https://www.f2er.com/php/138771.html