我在php中进行了简单的登录
我在哪里输入密码
的login.php
<form action="output.php" method="get">
Enter your password:<input type="text" name="password">
<input type="submit" value = "Login">
</form>
它会给我一个输出
output.php
<?php
$password = $_GET["password"];
if($password){
echo $password;
}
?>
但如果我在文本框中输入&符号(&amp; )。网址更改为%26
如何将其更改为&符号(&amp; )?
像
谢谢