Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/08/2007, 08:06
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Variables Dinamicas!? AYUDA!

Puedes tambien usar variables con arreglos:
Código HTML:
<input type="text" name="variable[]" value="" /> 
y en PHP:
Código PHP:
$var $_POST['variable'];
foreach( 
$var as $texto ) {
     echo 
"$texto<br />";

Asi no tienes que saber el numero de registros.

Saludos.