Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.