Ver Mensaje Individual
  #15 (permalink)  
Antiguo 20/05/2011, 18:17
tete_de
 
Fecha de Ingreso: mayo-2011
Ubicación: Guadalupe, N.L, México
Mensajes: 45
Antigüedad: 13 años, 6 meses
Puntos: 6
Código PHP:
Ver original
  1. $query = "SELECT Noticia FROM NoticiasMundo";
  2.     $result = mysql_query($query);
  3.     $tot = mysql_num_rows($result);
  4.     $num = rand(1,$tot);
  5.     $i = 1;
  6.     $array = array("á"=>"á","é"=>"é","í"=>"í","ó"=>"ó","ú"=>"ú", "ñ"=>"ñ","ü"=>"ü");
  7.     while($row = mysql_fetch_array($result, MYSQL_BOTH))
  8.     {
  9.     echo "Noticia ".$i.":";
  10.     echo "<br>";
  11.     echo strtr($row['Noticia'],$array);
  12.     echo "<br><br>";
  13.     $i++;
  14.     }
espero que sirva

me equivoque ¡rayos!, soy nuevo en esta web y no me fije que ya estaba resuelto xD

Última edición por jpinedo; 20/05/2011 a las 22:10 Razón: combinar