hello I just wanted to check and see if this would be correct PHP syntax:
if ($input == "DeOnTRAY96@localhost"){
echo"
Projects: 1"?>
<br>
<?php
echo"
Admin: yes
";
}
elseif ($input == NULL){
die("Please enter password.");
}else{
header("Location:Invalidpassword.php");
exit;
}
Right where is says
if($input == "DeOnTRAY96@localhost"){
Could I put
if($input == "DeOnTRAY96@localhost" or "somethingelse"){
And still have it work?