Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/02/2011, 19:35
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

Creo que ya entendi lo que necesitas.
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($row = mysql_fetch_assoc($result)) {
  7.   $matriz[strtolower($row['texto'])] = $row['idmenu'];
  8. }
  9.  
  10. echo '<a href="sitio.php?id='.$matriz['inicio'].'">P&aacute;gina de Inicio</a>'
  11.  
  12. ?>