Feb 5th, 2011, 8:08 AM
I am trying to make sure that form submissions are unique with both email and IP address verification. I currently have the verification for the email address working, but I am wondering what the proper syntax is for the $criteria array using IP address: eg:
current
current
PHP Code:
<?php
$criteria = array(
"col_19" => $_POST["Email"]
);
would it be?
PHP Code:
<?php
$criteria = array(
"col_19" => $_POST["Email"],
"ip_address" => $_POST["ip_address"]
);
