Take for example this string:
0,;.:-_()!"#$%&'()*?/
If that is what users sends as an input value, $_GET["password"])
interprets the string only to the first "
. What is a proper way to handle all character password?
CODE:
if (isset($_GET["password"])){
$email = $_GET["password"];
echo $email."<br>";
}