Hola perdon por la demoras, lo tengo asi.
css.
.jean {
background:url(rotador.php) no-repeat scroll 0 0 transparent;
bottom:0;
height:200px;
position:fixed;
right:1px;
width:300px;
z-index:1
}
En plantilla asi:
<a href="member.php?action=register"><div class="jean"></div></a>
y en mi archivo de .php "rotador"
<?php
$numbanners = 4 ;
$random = rand(1,$numbanners);
$img = array();
$url = array();
$txt = array();
$img[1] = "images/rotador.png";
$url[1] = "http://www.axeso1.com ";
$txt[1] = "Mi Sitio Web! ";
$img[2] = "images/rotador.png";
$url[2] = "http://www.axeso2.com ";
$txt[2] = "Tu Sitio Web 2! ";
$img[3] = "images/rotador.png";
$url[3] = "http://www.axeso3.com ";
$txt[3] = "Tu Sitio Web3! ";
$img[4] = "images/rotador.png";
$url[4] = "http://www.axeso4.com";
$txt[4] = "Tu Sitio Web4!";
echo "<a href='$url[$random]' target=' _blank '><img src='$img[$random]' alt='$txt[$random]' border=' 0 '></a>";
?>
Las imagene le puse en mi local. y aun asi no se logran ver.
Saludos y gracias por su ayuda a
todos!