As you can see, if I type "letmein" it should say "Welcome back, friend!"
But NOTHING at all happens, and on the website the exact code they give is this, and it doesn't work :S So I'm trying to figure out for myself what's not right!
Can you guys help please:)
<?php
if(isset($_POST["Submit"]))
{
$username = $_POST["username"];
if ($username == "letmein")
{
print("Welcome back, friend!");
}
else
{
print("You are not a member of this site.");
}
}
?>


Sign In
Create Account

Back to top









