
04/12/2009, 15:37
|
 | | | Fecha de Ingreso: noviembre-2009 Ubicación: Buenos Aires, Argentina
Mensajes: 1.971
Antigüedad: 15 años, 5 meses Puntos: 65 | |
Respuesta: una ultima pregunta Para, ahi me di cuenta del error, muy bobo por cierto
while( $row = mysql_fetch_row($response) ) {
echo $row[0];
}
Si queres guardarlos en otro array, deberias hacer
$noticias=array();
$c=0;
while( $row = mysql_fetch_row($response) ) {
$noticia[$c] = $row[$c];
$c++;
}
Venga ese karma hombre!! |