2 || $atype < 1) $atype = 2; $problems = []; if(isset( $_POST['user'],$_POST['pass1'],$_POST['pass2'],$_POST['sex'],$_POST['email'],$_POST['age'],$_POST['passreqq'],$_POST['passreqa'] ,$_POST['A'])) { if(isset($_POST["cbr"])) { if($_POST['cbr'] !== "OK") array_push($problems, "You need to read the RULES and agree to follow them!"); } else { array_push($problems, "You need to read the RULES and agree to follow them!"); } if(isset($_POST["cbt"])) { if($_POST['cbt'] !== "OK") array_push($problems, "You need to read the Terms and Conditions agree to be bound by them!"); } else { array_push($problems, "You need to read the Terms and Conditions agree to be bound by them!"); } if($_POST['A'] == 1){ if(isset($_POST["cbp"])) { if($_POST['cbp'] !== "OK") array_push($problems, "You need to have Parental Permission!"); } else { array_push($problems, "You need to have Parental Permission!"); } } if($_POST['pass1'] !== $_POST['pass2']) array_push($problems, "Passwords must match!"); $username = $_POST['user']; $password = $_POST['pass1']; $age = intval($_POST['age'],10); $email = $_POST['email']; $reset_question = $_POST['passreqq']; $reset_answer = $_POST['passreqa']; $country = $_POST['country']; $gender = $_POST['sex']; if(preg_match('/[^A-Za-z]/', $username)) array_push($problems, "Username must contain ONLY Letters."); $username_len = strlen($username); if($username_len < 3) array_push($problems, "Username must be at least 3 characters long."); if($username_len > 16) array_push($problems, "Username must be less than 16 characters long."); if(preg_match('/[A-Z]{2,}/',$username)) array_push($problems, "Username should be formatted with the first letter of each word capitalized. ( For example: BlueBunny )"); if(strtoupper($username)[0] !== $username[0]) array_push($problems, "Username should be formatted with the first letter of each word capitalized. ( For example: BlueBunny )"); if(preg_match('/[^A-Za-z0-9]/',$password)) array_push($problems, "Password must contain ONLY Letters and numbers."); $password_len = strlen($password); if($password_len < 6) array_push($problems, "Password must be at least 6 characters long."); if($password_len > 16) array_push($problems, "Password must be less than 16 characters long."); if(!preg_match('/[0-9]/',$password)) array_push($problems, "Password must contain at least one number."); if(!preg_match('/[a-zA-Z]/',$password)) array_push($problems, "Password must contain at least one letter."); if($reset_question == "Select a question") array_push($problems, "You must select a Password Recovery Question."); if($reset_answer == "") array_push($problems, "You must Answer the Password Recovery Question."); if($country == "") array_push($problems, "Please enter your country."); if($_POST['age'] == "") array_push($problems, "Please enter your age."); if($username == $password) array_push($problems, "Username and Password can not be the same!"); if(strpos($username, $password) !== false) array_push($problems, "The password cannot be within the username!."); if(strpos($password, $username) !== false) array_push($problems, "The password cannot have the username within it!."); if(!preg_match('/^[A-Za-z0-9_.+-]*\@[A-Za-z0-9_.+-]*\.[A-Za-z0-9_.+-]{1,4}$/',$email)) array_push($problems, "Email does not appear valid, you will not be able sign in without getting the login mail."); populate_db(); $connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'"); $result = mysqli_query($connect, "SELECT MAX(Id) FROM Users"); $user_id = $result->fetch_row()[0] + 1; if($user_id == NULL) $user_id = 0; $salt = random_bytes ( 64 ); $answer_hash = hash_salt($reset_answer,$salt); $password_hash = hash_salt($password,$salt); $hex_salt = bin2hex($salt); if(user_exists($username)) array_push($problems, "Username taken. Please try a different account name."); if(count($problems) <= 0) { $activated = "NO"; if(!$email_activation){ $activated = "YES"; } $stmt = $connect->prepare("INSERT INTO Users VALUES(?,?,?,?,?,?,?,?,?,?,'NO','NO',?)"); $stmt->bind_param("isssssissss", $user_id, $username, $email, $country, $reset_question, $answer_hash, $age, $password_hash, $hex_salt, $gender, $activated); $stmt->execute(); send_activation_email($email, $username, $password); echo('
Your account has been added! Look for the email from '.$from_email.' with your activation code! You cannot play until you CLICK the link with your code in the email. Be sure to check your Spam email box in case it goes there. If you do not get the email soon, feel free to log in with your username and password to re-send the Activation Code to the same or a different email address. Go Back to Main Page |
Horse Isle Create New Account: Only one account per person. Make sure you have parental permission if under 13! Go Back to Main Page |
|