Código
$username = $_POST["strNick"]; $pass = $_POST["strPassword"]; $password = $_POST["password"]; $email = $_POST["strEmail"]; $mail = $_POST["mail"]; $telefono = $_POST["intNtelf"]; $telefono2 = $_POST["telefono"]; $checkuser = comprobaruser($_POST["strNick"]); $checkmail = comprobaruser($_POST["strEmail"]); if($pass!=$password) { echo "Las contraseñas no coinciden"; } if($email!=$mail) { echo "El email no coincide"; } if($telefono!=$telefono2) { echo "Los telefonos no coinciden"; }else { if ($checkuser !=0) { echo "El usuario" .$username. "ya existe"; } if ($checkmail !=0){ echo "El mail" .$email. "ya existe"; } } }else { $insertSQL = sprintf("INSERT INTO tblusuario (strNombre, strEmail, intActivo, strPassword, strDireccion) VALUES (%s, %s, %s, %s, %s)", GetSQLValueString($_POST['strNombre'], "text"), GetSQLValueString($_POST['strEmail'], "text"), GetSQLValueString($_POST['intActivo'], "int"), GetSQLValueString($_POST['strPassword'], "text"), GetSQLValueString($_POST['strDireccion'], "text"));