Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Strange question I know, but I need to create an input field that only accepts a single password, in this case a promo code, so it can go to another page where a client can print out some pdfs and other sorts of details. Thanks for your time and let me know if you need more details.

share|improve this question

migrated from webmasters.stackexchange.com May 28 '12 at 23:01

1 Answer

up vote 1 down vote accepted

This requires nothing, except that you change the code on line 6 to the PROMO you want.

<form action="" method="POST">
Code: <input name="code" type="text" />
<input name="submit" type="submit"/>
</form>
<?php
if(isset($_POST['submit']))
{
    if($_POST['code'] == "7d7cf9e1")
    {
        echo 'Code accepted.';
        //do something here
    }
    else{
        echo 'Sorry, try again.';
    }
}
?>

You can adapt that to your own needs.

share|improve this answer
Awesome that works great! Thank you! – dave May 28 '12 at 21:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.