Quote:
Originally Posted by office politics Quote:
Originally Posted by kmote I don't think you meant to do this either Code: if ($_POST["random"]="random")
| this should be ok.
random is a checkbox. if set, the value set in html is sent with the form data. otherwise this value will be empty. |
Code:
if ($_POST['random'] == true)
Should be like this.