hombre no he puesto todo el codigo he puesto lo que creia que era conveniente.... os pongo todo el codigo....
Código Javascript
:
Ver original<script language="JavaScript" type="text/JavaScript">
var anuncio0 = new Array(5);
var anuncio1 = new Array(5);
var anuncio2 = new Array(5);
var anuncios = new Array (3)
anuncios[0] = anuncio0;
anuncios[1] = anuncio1;
anuncios[2] = anuncio2;
var counter = 0;
function rellenar(){
if(<?=$i?>==0){
anuncio0[0] = new Image(62,12);
anuncio0[0] = "<?=$row[4]?>";
anuncio0[1] = "<?=$mayusculas?>";
anuncio0[2] = "<?=$row[3]?>";
anuncio0[3] = "<?=$categoriamayusculas?>";
anuncio0[4] = "<?=$preciomayusculas?>";
}else if('.$i.'==1){
anuncio1[0] = new Image(62,12);
anuncio1[0] = "'.$row[4].'";
anuncio1[1] = "'.$mayusculas.'";
anuncio1[2] = "'.$row[3].'";
anuncio1[3] = "'.$categoriamayusculas.'";
anuncio1[4] = "'.$preciomayusculas.'";
}else{
anuncio2[0] = new Image(62,12);
anuncio2[0] = "'.$row[4].'";
anuncio2[1] = "'.$mayusculas.'";
anuncio2[2] = "'.$row[3].'";
anuncio2[3] = "'.$categoriamayusculas.'";
anuncio2[4] = "'.$preciomayusculas.'";
}
}
function changeBanner(){
if(counter > 2)
counter = 0;
document.getElementById("banner").innerHTML = "<img src="+anuncios[counter][0]+" width='62px' height='12px' border='0px' />"
document.getElementById("texto").innerHTML = anuncios[counter][2];
document.getElementById("banner_peq_5").style.background="white";
document.getElementById("banner_peq_"+(counter+1)).style.background="red";
if (counter >= 1)
document.getElementById("banner_peq_"+counter).style.background="white";
counter++;
}
timer = setInterval("changeBanner()", 2000);
window.onload = changeBanner;
</script>
</head>
<body>
Código PHP:
Ver original<?php
//CONEXION BASE DE DATOS
$consulta = mysql_query("SELECT id_anuncio FROM anuncios order by id_anuncio desc limit 5", $link);
// CODIGO PARA BUSCAR SI HAY UN ERROR EN LA CONSULTA
$error = mysql_error($link); // $link es la variable de conexión
if ($error!=null)
{
print("Ocurrio; el Siguiente Error:\n ".$error);
}
// FIN DE LA BUSQUEDA DE ERROR
$i=0;
//controla si existen anuncios
//if ($total>0){
$result=$id_ult_anuncio['id_anuncio'];
if($result!=""){
while ($i<3){
$result=$id_ult_anuncio['id_anuncio'] - $i;
$result = mysql_query("SELECT * FROM anuncios WHERE id_anuncio=$result", $link);
}
$i++;
}
}
?>
Código Javascript
:
Ver original<script language="javascript" type="text/javascript">
rellenar()
alert(anuncio0[2]);
alert(anuncio0[3]);
</script>