06-02-2009, 10:02 AM
|
#11 (permalink)
|
|
The Prestige
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
|
You could also check if the box is checked(for example for licence agreement tick-box).
PHP Code:
$agree = $_POST['licenceagreementbox']; if($agree == 'checked') { // do what you want } else { echo 'you have to agree to licence..'; }
__________________
|
|
|
|