Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/11/2010, 16:57
Avatar de ylellan
ylellan
 
Fecha de Ingreso: mayo-2010
Ubicación: en un lugar de Veracruz
Mensajes: 432
Antigüedad: 14 años, 5 meses
Puntos: 36
Respuesta: Necesito Ayuda

se me ocurren un monton de soluciones pero la mas sencilla corazon puede ser la sig:

Código HTML:
Ver original
  1. <?php echo $_GET['comentario'];?>
  2. <form action="nueva.php" method="post">
  3. Gaseosas<br>
  4. <input type="checkbox" name="gas1" value="1">
  5. <input type="checkbox" name="gas2" value="2">
  6. <input type="checkbox" name="gas3" value="3">
  7. <input type="checkbox" name="gas4" value="4">
  8. <input type="checkbox" name="gas5" value="5">
  9. <input type="submit" name="enviar" value="enviar">
  10. </body>
  11. </html>

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");
}
}
?>