- Impact
- 19
Hey
I am having a small PHP trouble
Here is the code
and this is what my url looks like
but its still not saying "HEY"
I am having a small PHP trouble
Here is the code
PHP:
<?
$username = $_Get['user'];
$pass = $_Get['pass'];
$email = $_Get['email'];
$registerpass = $_GET['registerpass'];
if (($registerpass == "z3nixrul3s") && ($pass != '') && ($email !='') && ($username!='')) {
echo "hey";
}
?>
Code:
http://www.mysite.com/register.php?registerpass=z3nixrul3s&user=a&pass=a&email=a
but its still not saying "HEY"





