Hey guys,

I've got a problem where my page, after you login, only displays normal HTML and not PHP code. Here is the code, I don't know what is wrong. Thank you.

Code:
<? 
session_start();

echo "This doesn't show either";

if(!session_is_registered(myusername)){
header("location:index.php");
}



?>

<html>
<body>
<p>Login Successful :D</p>
</body>
</html>
Thanks,

-Francis