(tested)
The reason why your form is not showing is because of these two lines:
1) This one had a missing closing parentheses )
at the end.
$password = md5(md5("Ji5t63s".password."v5h2ih47");
Should be:
$password = md5(md5("Ji5t63s".password."v5h2ih47"));
2) The <a href="https://stackoverflow.com/questions/19200663/./member.php">
– Problem is the (unescaped) double quotes or use of single quotes.
Your existing line:
echo "You have been logged in as <b>$dbuser</b>. <a href="https://stackoverflow.com/questions/19200663/./member.php">Click here</a> to go to the member page.";
Should be:
echo "You have been logged in as <b>$dbuser</b>. <a href="https://stackoverflow.com/questions/19200663/./member.php">Click here</a> to go to the member page.";
or escape them with \"
echo "You have been logged in as <b>$dbuser</b>. <a href=\"./member.php\">Click here</a> to go to the member page.";
Now as far as the functionality of the rest (of code with include files), that is out of my hands. You asked why your form was not showing up.
9
solved PHP – Login Form does not show [closed]