Código PHP:
<?php require_once('../Connections/xxxxxx.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) VALUES (%s)",
GetSQLValueString($_POST['sexo'], "text"));
mysql_select_db($database_xxxxxxx, $xxxxxx);
$Result1 = mysql_query($insertSQL, $xxxxxxx) 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í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>
<input name="sexo" type="radio" value="Femenino" onclick="document.form1.boton.disabled=false"/>
Femenino
<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>