I'm trying to write some checkbox
plus ID
of the product in my database MySQL
but I'm not getting it, what I have so far is this:
The form:
<input class="chk" type="checkbox" name="cores[]" value="<?php echo $row_RsCores['id_cor_textura']; ?>" />
<input name="IdProduto" type="hidden" value="<?php echo $id_produto; ?>">
The script that should perform the recording:
// RESGATE DAS VARIÁVEIS
$IdProduto = $_POST['IdProduto'];
$itens = $_REQUEST['cores'];
if (!empty($itens)) {
$qtd = count($itens);
for ($i = 0; $i < $qtd; $i++) {
// echo $itens[$i];//imprime o item corrente
mysql_select_db($database_conexao, $conexao);
$query = "INSERT INTO produto_textura
(id_produto,
id_cor_textura
)
VALUES
('$IdProduto',
'$itens[$i]')";
}
$queryExec = mysql_query($query, $conexao) or die( "Erro ao inserir checks no banco de dados.");
}
The error that occurs is this:
"Erro ao inserir checks no banco de dados."
My MySQL
looks like this: