Ok, I am learning to code reading this tutorial and I believe I’m doing OK so far but I’ve hit a brick wall!
[php]<?PHP
$username = $_POST[‘username’];
if ($username = = “letmein”) {
print (“Welcome back, friend!”);
}
else {
print (“You’re not a member of this site”);
}
?>[/php]
What is wrong with this? This is infact code from the tutorial but it has errors and doesn’t work. Why?