Result Size:
625 x 571
tryphp_func_filter_has_var.php:
<!DOCTYPE html> <html> <body> <?php if (!filter_has_var(INPUT_GET, "email")) { echo("Email not found"); } else { echo("Email found"); } ?> </body> </html>
Email not found