这可能是一个非常简单的问题,但我无法弄清楚。我需要使用 PHP 将一些包含特殊字符的值存储到 HTML 隐藏字段中,例如5' 5''
指示人的身高。
该值存储在 MySql 数据库中。我尝试过这样的事情
echo "<input type='hidden' id='ed_your_height' name='hd_your_height'
value=".html_entity_decode($your_heigth)."/>";
和
echo "<input type='hidden' id='ed_your_height' name='hd_your_height'
value=".htmlentities($your_heigth)."/>";
但它给了我价值5'
,而不是5' 5''
在这两种情况下。我需要在下拉列表中显示这些值并进行一些比较。
那么如何将带有特殊字符的值存储到 HTML 隐藏字段中(从数据库中检索)?