Hola, tengo una consulta que no puedo resolver a ver si me pueden decir donde esta el error porque ya probe y no me funciona, resulta que tengo un Form con 3 checkbox comandos para guardar los datos en MYSQL, entonces que lo que sucede es que nunca me guarda el valor del checkbox y si me guarda todos los otros valores me explico? Por favor si alguien me puede dar una mano.
Código PHP:
<?php require_once('Connections/encuesta.php'); ?>
<?php
if (array_key_exists('enviar', $_POST)) {
if (isset($_POST['check'])) {
$_POST['check'] = implode(',', $_POST['check']);
}
else {
$_POST['check'] = '';
}
if (isset($_POST['check1'])) {
$_POST['check1'] = implode(',', $_POST['check1']);
}
else {
$_POST['check1'] = '';
}
if (isset($_POST['check2'])) {
$_POST['check2'] = implode(',', $_POST['check2']);
}
else {
$_POST['check2'] = '';
}
}
?>
<?php
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 encuesta (Tipo, camas, ingresosanuales, edadmedia, apacheii, pregunta1, Pregunta2, cantpacientes, cantconst, incidencia, incidconstip, protocolo, prevencion, `check`, otros1, check1, otros2, check2, involucra, demorasalida, demoraprog, prolonga) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['Tipo'], "text"),
GetSQLValueString($_POST['camas'], "text"),
GetSQLValueString($_POST['ingresosanuales'], "text"),
GetSQLValueString($_POST['edadmedia'], "text"),
GetSQLValueString($_POST['apacheii'], "text"),
GetSQLValueString($_POST['pregunta1'], "text"),
GetSQLValueString($_POST['Pregunta2'], "text"),
GetSQLValueString($_POST['cantpacientes'], "text"),
GetSQLValueString($_POST['cantconst'], "text"),
GetSQLValueString($_POST['incidencia'], "text"),
GetSQLValueString($_POST['incidconstip'], "text"),
GetSQLValueString($_POST['protocolo'], "text"),
GetSQLValueString($_POST['prevencion'], "text"),
GetSQLValueString($_POST['check'], "text"),
GetSQLValueString($_POST['otros1'], "text"),
GetSQLValueString($_POST['check1'], "text"),
GetSQLValueString($_POST['otros2'], "text"),
GetSQLValueString($_POST['check2'], "text"),
GetSQLValueString($_POST['involucra'], "text"),
GetSQLValueString($_POST['demorasalida'], "text"),
GetSQLValueString($_POST['demoraprog'], "text"),
GetSQLValueString($_POST['prolonga'], "text"));
mysql_select_db($database_encuesta, $encuesta);
$Result1 = mysql_query($insertSQL, $encuesta) or die(mysql_error());
}
?>