Ver Mensaje Individual
  #6 (permalink)  
Antiguo 18/02/2011, 22:07
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, 5 meses
Puntos: 416
Respuesta: Seleccionar item de recordset

Aun mas facil:
Código PHP:
Ver original
  1. <?php
  2.  
  3. //Blah blah blah conexion
  4. $matriz = array();
  5. $result = mysql_query("SELECT idmenu, texto FROM tabla");
  6. while($matriz[] = mysql_fetch_assoc($result)) {
  7. }
  8.  
  9. var_dump($matriz);
  10.  
  11. ?>