Esto estaria bien?
Código PHP:
Ver originalif (isset($_POST) && isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] == 'http://www.elzulo***/alta_usuario.php' && !empty($_POST)) {
$nombre = $_POST["strNombre"];
$username = $_POST["strNick"];
$pass = $_POST["strPassword"];
$password = $_POST["password"];
$email = $_POST["strEmail"];
$mail = $_POST["mail"];
$direccion = $_POST["strDireccion"];
$cpostal = $_POST["intCpostal"];
$poblacion = $_POST["strPoblacion"];
$provincia = $_POST["strPovincia"];
$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 {
if (isset($_POST["form1"])) { $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"));