I have simple login in my php
Where in i will input password
login.php
<form action="output.php" method="get">
Enter your password:<input type="text" name="password">
<input type="submit" value = "Login">
</form>
and it will give me an output
output.php
<?php
$password = $_GET["password"];
if($password){
echo $password;
}
?>
but if i enter ampersand(&) on the textbox. the url change to %26
how can i change it to ampersand(&)?
like
Thank you