Tema: Resources
Ver Mensaje Individual
  #8 (permalink)  
Antiguo 09/04/2009, 14:06
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 15 años, 9 meses
Puntos: 416
Respuesta: Resources

Recoge los datos con mysql_fetch_array() y metelos en una variable de SESSION.

Código PHP:
<?php
while($row mysql_fetch_assoc($result)) {
  
$_SESSION['datos'][] = $row;
}
?>