OK URL
$setokurl
$setokurl is a security feature to ensure the form is filled out on your web site, so your form can not be hi-jacked by a spamer. BizMailForm verifies the URL, from the very left to right IE. (if "http://www.yourdomain.com/" is entered) Then the form must be submited from that exact address, or the form will not process. For Instance in the example above, if the form is attempted to be processed from:
http://www3.yourdomain.com/
Will flag submission, and not allow you to process of the form.
IT IS IMPORTANT TO INCLUDE THE FORWARD SLASH "/" AFTER THE OK URL.
to use @okurls to verify the URL the form is submitted by; set $setokurl = "1"; and set $setokurl = "0"; if you do not want to use @okurls to verify form submission URL.
Example:
$setokurl = "0"; # WOULD NOT REQUIRE URL VALIDATION #
$setokurl = "1"; # WOULD REQUIRE URL VALIDATION #
Only web address's entered below will be allowed to process the form;
if $setokurl = "1";
NEEDS TO BE THE EXACT DOMAIN FOLLOWED BY A FOWARD SLASH!
CORRECT ENTRY: http://www.yourdomain.com/
IN-CORRECT ENTRY: http://www.yourdomain.com
IN-CORRECT ENTRY: www.yourdomain.com
IN-CORRECT ENTRY: yourdomain.com
@okurls = ("http://www.yourdomain.com/", "http://yourdomain.com/", "https://www.yourdomain.com/", "https://yourdomain.com/");
YOU CAN ADD AS MANY DOMAINS AS YOU WOULD LIKE!