Okay so i re-uploaded my CMS and seem that all the mysql is erroring and i've narrowed alot down, Im stuck on this one
include_once "connect_to_mysql.php"; // <<---- Connect to database here
$username = preg_replace('#[^A-Za-z0-9]#i', '', $_POST['username']);
// filter
$sql_uname_check = mysqli_query(" SELECT id FROM myMembers WHERE username='$username' LIMIT1");
$uname_check = mysql_num_rows($sql_uname_check);
Anyone have any idea?, Just trying to brush up on the Mysqli of things