se me ocurren un monton de soluciones pero la mas sencilla corazon puede ser la sig:
Código HTML:
Ver original<?php echo $_GET['comentario'];?>
<form action="nueva.php" method="post"> <input type="checkbox" name="gas1" value="1"> <input type="checkbox" name="gas2" value="2"> <input type="checkbox" name="gas3" value="3"> <input type="checkbox" name="gas4" value="4"> <input type="checkbox" name="gas5" value="5"> <input type="submit" name="enviar" value="enviar">
nueva.php
Código PHP:
<?php
if(isset($_POST['enviar'])){
if(!empty($_POST['gas1']) || !empty($_POST['gas2']) || !empty($_POST['gas3']) || !empty($_POST['gas4']) || !empty($_POST['gas5'])){
$gaseosa=$_POST['gas1']."-".$_POST['gas2']."-".$_POST['gas3']."-".$_POST['gas4']."-".$_POST['gas5'];
mysql_query("INSERT INTO tabla(campo1,campo2)VALUE('$var','$gaseosa')") or die("error".mysql_error());
}
else{
header("location:index.php?comentario=falta_seleccionar_valor");
}
}
?>