Anuack.com
2008-07-09 13:50:14 UTC
Hola Forero
Tengo este código de noticia aleatoria. Pero, cuando le coloco database, no
funciona.
El proceso de realizar el cambio es
noticiero['0']=new
noticia("productos/538081.JPG","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=1");
Agrego juego de registro y no funciona.
noticiero[<?php echo $row_productos['id']; ?>]=new noticia("productos/<?php
echo $row_productos['imagen']; ?>","<?php echo $row_productos['titulo'];
?>","<?php echo $row_productos['contenido'];
?>","http://anuack.com/noticia.php?id=<?php echo $row_productos['id']; ?>");
<?php echo $row_productos['id']; ?>
Alguna sugerencia
Código
_____________
<script>
noticiero=new Array();
// Pon las noticias de la siguiente forma: new noticia(imagen,
titulo,texto,enlace)
noticiero[0]=new
noticia("productos/538081.JPG","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=1");
noticiero[1]=new
noticia("productos/10175920.jpg","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=2");
//noticiero[2]=...
espera=5 //Segundos de espera
function noticia(imagen,titulo,texto,enlace){
this.imagen=imagen;
this.texto=texto;
this.titulo=titulo
this.enlace=enlace
}
function obj(x){
return document.getElementById(x);
}
function mostrar(a){
obj('cuadro').style.visibility='hidden';
obj("imagen_noticia").src=noticiero[a].imagen;
obj("titulo_noticia").innerHTML=noticiero[a].titulo;
obj("texto_noticia").innerHTML=noticiero[a].texto;
obj("enlace").href=noticiero[a].enlace
}
b=0;
function cambiar(incr){
b=(noticiero.length>b+incr)?b+incr:0;
if(b==-1){b=noticiero.length-1;}
mostrar(b);
}
var pepe;
function inicio(){
pepe=setInterval("cambiar(1)",espera*1000);
}
</script>
<style>
#imagen_noticia{
float:left;
}
</style>
<body onload="inicio();mostrar(0);">
<div id="cuadro">
<img src="" id="imagen_noticia"
onload="obj('cuadro').style.visibility='visible'"/>
<h1 id="titulo_noticia"></h1>
<p id="texto_noticia"></p>
<a href="#" id="enlace">leer más</a><br />
<a href="#" onclick="clearInterval(pepe);cambiar(-1);inicio()">Anterior</a>
| <a href="#" onclick="clearInterval(pepe)">Pausa</a> | <a href="#"
onclick="clearInterval(pepe);cambiar(1);inicio()">Siguiente</a>
</div>
--
--
Ante Cualquier inquietud no dude en comunicarse con nosotros.
* Para comunicarse de forma gratuita a nuestra oficina, siga las siguientes
instrucciones.
Solo es posible a teléfono fijo
1. Entre a http://live.telme.sg/callmeback.php?urlst=18002974572
2. Escriba el número de teléfono de la siguiente forma. Elimine símbolos (+)
00 + código del país + código de área + numero telefónico
Ejemplo Bogota
00 + 57 + 1 + Numero Telefónico
Solo es posible a teléfono fijo
ATT
Daniel Fernando Luna Sánchez
Anuack Technology de Colombia
PBX (+57)(+7) 6378053 -
Ola: 300-3990816
Comcel: 311-2263309
Movistar: 315-6833493
Bucaramanga. Santander. Colombia
Servicio al Cliente de 8:00 AM a 8:00 PM (GMT -05:00)
Registro de Dominios
Hosting (Hospedaje Web) Compartido O Dedicado
Administradores de Contenidos Web
Aplicaciones Web
Diseño Web - Multimedia
Equipos de cómputo
NO SPAM. NOTIFICACIÓN LEGAL Y CONFIDENCIAL
Tengo este código de noticia aleatoria. Pero, cuando le coloco database, no
funciona.
El proceso de realizar el cambio es
noticiero['0']=new
noticia("productos/538081.JPG","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=1");
Agrego juego de registro y no funciona.
noticiero[<?php echo $row_productos['id']; ?>]=new noticia("productos/<?php
echo $row_productos['imagen']; ?>","<?php echo $row_productos['titulo'];
?>","<?php echo $row_productos['contenido'];
?>","http://anuack.com/noticia.php?id=<?php echo $row_productos['id']; ?>");
<?php echo $row_productos['id']; ?>
Alguna sugerencia
Código
_____________
<script>
noticiero=new Array();
// Pon las noticias de la siguiente forma: new noticia(imagen,
titulo,texto,enlace)
noticiero[0]=new
noticia("productos/538081.JPG","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=1");
noticiero[1]=new
noticia("productos/10175920.jpg","SSSSSSSSSSSSSSS","XXXXXXXXX","http://anuack.com/noticia.php?id=2");
//noticiero[2]=...
espera=5 //Segundos de espera
function noticia(imagen,titulo,texto,enlace){
this.imagen=imagen;
this.texto=texto;
this.titulo=titulo
this.enlace=enlace
}
function obj(x){
return document.getElementById(x);
}
function mostrar(a){
obj('cuadro').style.visibility='hidden';
obj("imagen_noticia").src=noticiero[a].imagen;
obj("titulo_noticia").innerHTML=noticiero[a].titulo;
obj("texto_noticia").innerHTML=noticiero[a].texto;
obj("enlace").href=noticiero[a].enlace
}
b=0;
function cambiar(incr){
b=(noticiero.length>b+incr)?b+incr:0;
if(b==-1){b=noticiero.length-1;}
mostrar(b);
}
var pepe;
function inicio(){
pepe=setInterval("cambiar(1)",espera*1000);
}
</script>
<style>
#imagen_noticia{
float:left;
}
</style>
<body onload="inicio();mostrar(0);">
<div id="cuadro">
<img src="" id="imagen_noticia"
onload="obj('cuadro').style.visibility='visible'"/>
<h1 id="titulo_noticia"></h1>
<p id="texto_noticia"></p>
<a href="#" id="enlace">leer más</a><br />
<a href="#" onclick="clearInterval(pepe);cambiar(-1);inicio()">Anterior</a>
| <a href="#" onclick="clearInterval(pepe)">Pausa</a> | <a href="#"
onclick="clearInterval(pepe);cambiar(1);inicio()">Siguiente</a>
</div>
--
--
Ante Cualquier inquietud no dude en comunicarse con nosotros.
* Para comunicarse de forma gratuita a nuestra oficina, siga las siguientes
instrucciones.
Solo es posible a teléfono fijo
1. Entre a http://live.telme.sg/callmeback.php?urlst=18002974572
2. Escriba el número de teléfono de la siguiente forma. Elimine símbolos (+)
00 + código del país + código de área + numero telefónico
Ejemplo Bogota
00 + 57 + 1 + Numero Telefónico
Solo es posible a teléfono fijo
ATT
Daniel Fernando Luna Sánchez
Anuack Technology de Colombia
PBX (+57)(+7) 6378053 -
Ola: 300-3990816
Comcel: 311-2263309
Movistar: 315-6833493
Bucaramanga. Santander. Colombia
Servicio al Cliente de 8:00 AM a 8:00 PM (GMT -05:00)
Registro de Dominios
Hosting (Hospedaje Web) Compartido O Dedicado
Administradores de Contenidos Web
Aplicaciones Web
Diseño Web - Multimedia
Equipos de cómputo
NO SPAM. NOTIFICACIÓN LEGAL Y CONFIDENCIAL