ilk sayfanız:
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var refreshId = setInterval(function() {
$("#iframe").load("iframe.php?randval="+ Math.random());
}, 10000);
});
</script>
</head>
<body>
<div id="iframe"></div>
</body>
</html>
iframe.php böyle olacak:
$siteler = array(
'http://r10.net/',
'http://facebook.com/',
'http://twitter.com/'
);
$random = $siteler[rand(0,count($siteler)-1)];
echo "<iframe src='$random' scrolling='no' frameborder='0' align='center' height = '768' width = '1368' name='test' border='0'></iframe>";
sanırım istediğiniz bu?
Not: 10sn de bir yenilenecek.