primero dale al check[] el valor del producto y luego cambia lo que tienes por esto:
Código PHP:
//datos de la coneccion cambia esto por la ruta donde esta tu conexión
require_once('Connections/conn_pruebas_local.php');
//función de DW para darle escape a caracteres peligrosos para MySQL
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$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;
}
}
//verificamos si se envía un array
if(is_array($_POST['check'])) {
//el titulo
echo "<strong>Los siguientes productos han sido escogidos:</strong><br /><br />";
while(list($key,$value) = each($_POST['check'])) {
//hacemos el mysql_real_escape_string con la funcion provista por DW. Siempre hay que revisar que la informacion que envia el usuario no es maliciosa
$insert_producto = GetSQLValueString($value, "text");
//hacemos el insert. cambia la info por la informacion de tu base d edatos
$query="INSERT INTO producto_tabla (producto_campo) VALUES ($insert_pregunta)";
//seccionamos la base de datos y la coneccion
mysql_select_db($database_conn_pruebas_local, $conn_pruebas_local);
//hacemos el query
$resultado1 = mysql_query($query, $conn_pruebas_local) or die(mysql_error());
//hacemos echo a las preguntas
echo $value.'<br />';
}
}
else {
//si no es array se envía un mensaje
echo "La información enviada no es un array";
}
Intercambia la información que te indico por la información tuya. Me dices si tienes algún problema.