Hice esto para ti, creo que es lo que buscas.
meses.php
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Para Forosdelweb.com</title>
</head>
<body>
<?php @$badera=$_POST['bandera'];
//si el formulario se envio
if ($badera==1)
{
echo '<h2>Seleccionaste los siguientes meses:</h2><br>';
///verificamos que lo que se envio fue un array
{
// realizamos el ciclo
while(list($key,$value) = each($_POST['checkbox'])) {
///imprimimos el valor del actual checkbox
echo $value.'<br>';
}
}
}
//si no se ha enviado el formulario
else
{
?>
<strong>Selecciona los meses de año que quieras:</strong><br>
<form id="form1" name="form1" method="post" action="">
<p>Enero
<input name="checkbox[]" type="checkbox" id="checkbox" value="Enero" /><br>
Febrero
<input name="checkbox[]" type="checkbox" id="checkbox" value="Febrero" /><br>
Marzo
<input name="checkbox[]" type="checkbox" id="checkbox" value="Marzo" /><br>
Abril
<input name="checkbox[]" type="checkbox" id="checkbox" value="Abril" /><br>
Mayo
<input name="checkbox[]" type="checkbox" id="checkbox" value="Mayo" /><br>
Junio
<input name="checkbox[]" type="checkbox" id="checkbox" value="Junio" /><br>
Julio
<input name="checkbox[]" type="checkbox" id="checkbox" value="Julio" /><br>
Agosto
<input name="checkbox[]" type="checkbox" id="checkbox" value="Agosto" /><br>
Septiembre
<input name="checkbox[]" type="checkbox" id="checkbox" value="Septiembre" /><br>
Octubre
<input name="checkbox[]" type="checkbox" id="checkbox" value="Octubre" /><br>
Noviembre
<input name="checkbox[]" type="checkbox" id="checkbox" value="Noviembre" /><br>
Diciembre
<input name="checkbox[]" type="checkbox" id="checkbox" value="Diciembre" /><br>
</p>
<p>
<input type="submit" name="button" id="button" value="Mostar Meses Marcados." />
<input name="bandera" type="hidden" id="bandera" value="1" />
</p>
</form>
<?php }?>
</body>
</html>