nadie? hice la recepcion de variables utilizando el ultimo codigo y me funciono, pero no se porque no me funciona con el otro. Este es el codigo completo:
Código PHP:
<?php require_once('Connections/planes.php'); ?>
<?php
$codigo= $_POST['codigo'];
$code= $_POST['code'];
$valor= $_POST['valor'];
$plan =$_POST['plan'];
if (empty($codigo)) {
echo "no ingresaste el codigo, por favor intentalo nuevamente <a href='planform.php?plan=$plan&valor=$valor'>AQUI</a>";
echo "codigo: $codigo y code: $code";
}
else if ($codigo == $code) {
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO datos (nombre, empresa, telefono, mail, mensaje, plan) VALUES (%s, %s, %s, %s, %s,%s)",
GetSQLValueString($_POST['nombre'], "text"),
GetSQLValueString($_POST['empresa'], "text"),
GetSQLValueString($_POST['telefono'], "text"),
GetSQLValueString($_POST['mail'], "text"),
GetSQLValueString($_POST['mensaje'], "text"),
GetSQLValueString($_POST['plan'], "text"));
mysql_select_db($database_planes, $planes);
$Result1 = mysql_query($insertSQL, $planes) or die(mysql_error());
$insertGoTo = "planformok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
$mail=$_POST['mail'];
$nombre=$_POST['nombre'];
$plan=$_POST['plan'];
$codigo=$_POST['codigo'];
$direccion='planformok.php?plan='.$plan.'&mail='.$mail.'&nombre='.$nombre.'&codigo='.$codigo;
}
header(sprintf("Location: $direccion", $insertGoTo));
}
else {
echo "no existe";
}
}
else {
echo "Ingresaste mal el codigo, por favor intentalo nuevamente <a href='planform.php?plan=$plan&valor=$valor'>AQUI</a> (NOTA: el codigo se solicita para evitar spam. Gracias)";
echo "codigo: $codigo y code: $code";
}
?>