Ver Mensaje Individual
  #8 (permalink)  
Antiguo 15/09/2008, 12:17
ThePlague
 
Fecha de Ingreso: julio-2008
Ubicación: Trujillo
Mensajes: 58
Antigüedad: 16 años, 5 meses
Puntos: 1
Pregunta Respuesta: algo como RSS Fading Scroller

Disculpa el insistir pero soy novatasooo en JS, Algo asi?:

Código PHP:
mysql_select_db($database_db_conexion$db_conexion);
$query_rs_obj1 "select * from tb_noticia ";
$query_rs_obj1.= " order by fec_alta DESC ";
$rs_obj1 mysql_query($query_rs_obj1$db_conexion) or die(mysql_error());
$row_rs_obj1 mysql_fetch_assoc($rs_obj1);
$totalRows_rs_obj1 mysql_num_rows($rs_obj1); 
Código:
begintag='<div style="font: normal 14px Arial; padding: 5px;">'; //set opening tag, such as font declarations
<?php for ($i = 0, $totalRows_rs_obj1 = mysql_num_rows($rs_obj1); $i < $totalRows_rs_obj1; $i ++)
  {
  echo $row_rs_obj1[$i]."'\n"; 
  }
?>
closetag='</div>';