Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/08/2009, 21:50
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 16 años, 4 meses
Puntos: 416
Respuesta: llenar array() con resultado de query

Código php:
Ver original
  1. foreach($paises->result_array() as $row)
  2. {
  3.     $first_options = array($row['PaisId'] => $row['NombrePais']);
  4. }

Debes hacer:
Código php:
Ver original
  1. foreach($paises->result_array() as $row)
  2. {
  3.     $first_options[$row['PaisId']] = $row['NombrePais'];
  4. }