遇到我建立的表格的问题。用户在地址字段中为他们的地址键入了一个哈希 (#)。在提交表单后将他们的地址放入查询字符串时,我的所有 GET 变量都在带有 # 的字段之后被破坏。有谁知道为什么会发生这种情况?我是否需要将 # 转换为不同的字符或使用其他类型的编码?这是我在页面上从查询字符串中获取值的代码..
<?php echo $_GET["address"]; ?><br/> // if this field has a # in the value, the GET variables below do not work..
<?php echo $_GET["city"]; ?><br/>
<?php echo $_GET["state"]; ?>