Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/08/2008, 15:55
aliyuwey
 
Fecha de Ingreso: mayo-2008
Mensajes: 148
Antigüedad: 16 años, 10 meses
Puntos: 1
encuestador en php

Hola a todos, les escribo una vez mas para pedirles ayuda, tengo el siguiente problema: hice un encuestador en php, el cual esta listo para enviar los datos que el usuario indique a una base de datos, el detalle es el siguiente: no puedo hacer o no se como hacer para que una vez que el usuario le haga clit en aceptar vaya a otra pagina, este es mas omenos la forma en que la quiero: pagina inicio.php(hace clit en mapa)=>encuesta.php(hacer clit en aceptar)=>mapa.php
(=> significa ir a), ya en la pagina de inicio monte una imagen con el mapa que vincula a la encuesta el problema es que una vez terminada la encuesta no se como hacer para que vaya al mapa, rayos estoy bloqueado y no se que hacer, es una tonteria pero ya no doy mas porfavor ayudenme, aqui les dejo el codigo que tengo hecho y porfa si pueden diganme donde me estoy equivocando o publiquenlo corregido, de antemano muchas gracias.
Código PHP:
<?php require_once('../Connections/xxxxx.php'); ?>
<?php
function GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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 encuesta_sex (sex) VALUES (%s)",
                       
GetSQLValueString($_POST['sexo'], "text"));

  
mysql_select_db($database_xxxxx$xxxxx);
  
$Result1 mysql_query($insertSQL$xxxxx) or die(mysql_error());

  
$insertGoTo $_GET['lugar'];
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$insertGoTo .= (strpos($insertGoTo'?')) ? "&" "?";
    
$insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$insertGoTo));
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
</head>

<body> 
<form action="<?php echo $editFormAction?>" method="POST" enctype="application/x-www-form-urlencoded" name="form1" id="form1">
  <p>Seleccione su Sexo:</p>
  <p>
    <img src="../imagenes/mujer.jpg" width="111" height="112" />
    <input name="sexo" type="radio" value="Femenino" onclick="document.form1.boton.disabled=false"/>
    Femenino
    <img src="../imagenes/hombre.jpg" width="111" height="112" />
    <input name="sexo" type="radio" value="Masculino" onclick="document.form1.boton.disabled=false"/>
    Masculino  </p>
  <p>
    <label>
    <input type="submit" name="Submit" id="boton" value="Aceptar" disabled="disabled" />
    </label>
</p>
  <input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>

Última edición por aliyuwey; 11/08/2008 a las 20:01