I have about 100 pages, every of which has 10-100 images attached. The path to the images are kept in a database.
Then, I have an area at every page where user can see random pictures from the list of pictures mentioned above. This image changes every 3 seconds.
To archieve such scenario I use a javascript function, which calls itself every 3 seconds.
function GenerateNewImg() {
$.ajax({
url: "myurl.php",
type : "get",
dataType: 'json',
async:true,
success: function(data){
$("#imgtochange").attr("src", data.res);
}
});
t = setTimeout('GenerateNewImg()',3000);
}
And in myurl.php I randomly choose a page and then an image.
I think, this is not very good solution, because it consumes processor time at the server.
Are there better ways to get a behaviour I need?
setTimeout(GenerateNewImg, 3000). You should not pass strings tosetTimeout. – pimvdb Aug 8 '11 at 16:00