It seems that you have a missing parameter, you should have 13 parameters and 13 ?
check the two parameters after password. (I took out signupdate
) try the below :
$stmt = mysqli_prepare(
$db_conx,
"INSERT INTO $storenameTable (firstname, lastname, username, address_1, address_2, postcode, country, county, city, email, password, storeShop) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
);
//after validation, of course
mysqli_stmt_bind_param($stmt, "issi", $firstname, $lastname, $username, $address_1, $address_2, $postcode, $country, $county, $city, $email, $hashedPass, $storenameTable);
mysqli_stmt_execute($stmt); /<<<<<<<< line 92
if (mysqli_affected_rows($db_conx)) /<<<<<<<< line 93
{
mysqli_stmt_close($stmt); /<<<<<<<< line 96
//update was successful
$id = mysqli_insert_id($db_conx);
}
You also can get more details on the last error by using var_dump(mysqli_error($db_conx));