<?php
if(isset($_GET['userName']))
    $userNmae=$_GET['userName'];
else{
	$userName="";
	echo "please input username:<br/>";
	}
if(isset($_GET['password']))
    $password=$_GET['password'];
else{
    echo "please input password:<br/>";
	}
if($userName=="admin" && $password=="123")
    echo "The username and password that you input is match!<br/>";
else
    echo "The username and password that you input is not match!";
?>
