Jump to content
MakeWebGames

Recommended Posts

Posted

There are numerous ways like what Zettieee said by restricting it to a particular userid, you can password protect it by creating just a real simple form or etc. those are just some of the easiest ways that don't require much effort

Posted

$pass = "myMasterPass";

if(!isset($_POST['submit'])){

echo '<form action="myfilename.php" method="POST"></br>

<input type="password" name="pass" value=""></br>

<input type="submit" name="submit">';

}

if(isset($_POST['submit'])){

if($_POST['pass'] == $pass){ //code here } else { die('not correct'); }

Posted
$pass = "myMasterPass";

if(!isset($_POST['submit'])){

echo '<form action="myfilename.php" method="POST"></br>

<input type="password" name="pass" value=""></br>

<input type="submit" name="submit">';

}

if(isset($_POST['submit'])){

if($_POST['pass'] == $pass){ //code here } else { die('not correct'); }

Derrty but gets the job done :p I'm not the biggest fan of die() but ehh oh well lol

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...