Jump to content

execute query after certain amount of time


c_pattle

Recommended Posts

I have a script that returns a random record from a database each time you refresh the page and adds it to the content so the list gets longer and longer.  However am I able to make it so that it runs the query of refreshes the page after a certain amount of time such as 5 seconds? 

 

If you're not sure what I mean I'm trying to get a similar effect to the twitter homepage where is display a random tweet after a certain amount of time. 

 

Thanks

I would suggest using javascript (jQuery is an excellent library) to call your php script every n seconds and append the returned data to the page...

 

Something like:

 

setInterval("$('#container').load('phpscript.php')", 5000);

JQuery and AJAX are completely different things. JQuery is a popular JavaScript library that implements easy ways to utilize AJAX technology. The load method used in theverychap's post above is an example of one of these easy methods.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.