Código
$error = null; $direccion = null; $poblacion = null; $provincia = null; $postal = null; $nombre = null; $nick = null; $pass = null; $password = null; $email = null; $mail = null; $telefono = null; $telefono2 = null; if (isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] == 'http://localhost/zulo/alta_usuario.php' && ($_POST != null)) { $direccion = $_POST["strDireccion"]; $poblacion = $_POST["strPoblacion"]; $provincia = $_POST["strProvincia"]; $postal = $_POST["intCpostal"]; $nombre = $_POST["strNombre"]; $nick = $_POST["strNick"]; $error = false; //Indica si hay un error $pass = $_POST["strPassword"]; $password = $_POST["password"]; $email = $_POST["strEmail"]; $mail = $_POST["mail"]; $telefono = $_POST["intNtelf"]; $telefono2 = $_POST["telefono"]; if($pass!=$password) { echo "Las contraseñas no coinciden"; $error = true; } if($email!=$mail) { echo "El email no coincide"; $error = true; } if($telefono!=$telefono2) { echo "Los telefonos no coinciden"; $error = true; } $checkuser = comprobaruser($_POST["strNick"]); if ($checkuser != 0) { } $checkmail = comprobarmail($_POST["strEmail"]); if ($checkmail != 0) { } if ($error != true) { $insertSQL = sprintf("INSERT INTO tblusuario (strNombre, strEmail, intActivo, strPassword, strDireccion, strNick, intCpostal, strProvincia, strPoblacion, intNtelf) VALUES (%s, %s, %s, %s, %s, %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"), GetSQLValueString($_POST['strNick'], "text"), GetSQLValueString($_POST['intCpostal'], "int"), GetSQLValueString($_POST['strProvincia'], "text"), GetSQLValueString($_POST['strPoblacion'], "text"), GetSQLValueString($_POST['intNtelf'], "int")); } }