如何在网址中将%26更改为&符号?

时间:2016-07-26 06:03:21

标签: php html url

我在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

  

http://localhost:8888/output.php?password=%26

如何将其更改为&符号(&amp; )?

  

http://localhost:8888/output.php?password=&

谢谢

0 个答案:

没有答案