![]() |
|
| |||||||
| Notices |
| Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
|
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
| ||||
| ||||
|
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 |