-
Tos Code
Hi,I really suck when it comes to this crap, but I was wondering how to make a TOS page.
Like you make:
By this you agree blah bah blah do you agree?
and if they dont agree it says like "THEN GTFO"
i know this is a dumb questions LMFAO but I needa help =[
-
Re: Tos Code
PHP Code:
if(isset($_POST['Agree'])){
echo "You agreed";
}else if(!isset($_POST['Agree']) || isset($_POST['Disagree'])){
echo "You suck";
}
You could always make 2 forms and have one form go to the next page and one form go somewhere else. That way you could just use buttons and not have to worry about checks.