Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/01/2008, 08:43
Jona77
 
Fecha de Ingreso: mayo-2006
Mensajes: 178
Antigüedad: 18 años
Puntos: 7
Re: unir variables

No entiendo para que queres hacer esto:

Código PHP:
$e1=$_POST['e1'];
$e2=$_POST['e2'];
$e3=$_POST['e3'];
...
$e78=$_POST['e78']; 
Para recorrer todos los checkbox podrías usar algo asi:

Código PHP:
for ( $i $i <= 78 $i ++) {

if(isset(
$_POST['e'.$i]))
{
$e $_POST['e'.$i];
echo 
$e;
echo 
"<br>";
}