I'm looking for a Age Verification page for a model site, but one that sets a cookie so once you pass it it doesn't come up again. I know Hammer made a nice one, however it doesn't run on a cookie system
Age verification page?
Collapse
X
-
Tags: None
-
make a page called verify.php
then make another page with a form on it say verify.html and put a form on it with a drop down list with a month/day/year that they can put their birthdate in, make sure the dropdown with the year's name is "year" so the script can check
and in verify.php put this
then on any page you want them to verify their age on, put this at the top of the page above EVERYTHING.PHP Code:<?php $year = $_POST['year']; $age = date("Y") - $year; if($age <= 18) { setcookie("ageverification", base64_encode($_SERVER['REMOTE_ADDR'] . "-" . time()), time() + (3600 * 24)); header("location: index.php"); exit; }else{ header("location: verify.html"); exit; } ?>
i did this via the quick reply form, it may be buggy or whatever, its just a general idea and to help you figure out a solutionPHP Code:<?php if($_COOKIE['ageverification'] == false) { header("location: verify.html"); exit; } ?> -
-

Comment