Announcement

Collapse
No announcement yet.

secret page login

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • secret page login

    I already created a contact form with no proplem. It is working well, but now im trying to make a page where visitors must answer to my quastion firs. if it's correct the page will redirect to the next page. If not correct an error page will show up.

    For exemple:

    This is a restricted site!
    You have to know what city i was born in to see the next page.

    Anyone can help me?

  • #2
    Re: secret page login

    You need to valid the form with a php script.
    Make a text field. Then do something like..

    <?
    $answer = $_POST['question'];
    if($answer == "New York")
    {
    header("Location: worked.html");
    }
    else
    {
    echo " This is a restricted site!<br>You have to know what city i was born in to see the next page.";
    }

    In POST['question'] - question is the name of the text field

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

    Comment


    • #3
      Re: secret page login

      Thank You!!

      Comment

      Working...
      X