Re: [PHP] php mysql live feed
- From: richardh@xxxxxxxxxxx (Richard Heyes)
- Date: Tue, 20 May 2008 21:56:37 +0100
admin@xxxxxxxxxxxxxxxxxxx wrote:
Okay before i pull more hair out...
I am trying to use php to pull mysql data and refresh the mysql data
every say 5 seconds for like a live display of the database without
the screen reloading.
I want the data to refresh but not the screen. Ajax seems to hate me
because everything i have seen/read/tried is wrapped around ASP.NET
or requires a user interaction to invoke the query.
If you have example scripts or a good tutorial that actually works
where you can open a php script and the data changes on the page as
the database does and the screen does not refresh, and you don’t have
to onclick, onfocus, or onblur kind of thing. I would be in your debt
You can use setTimeout() to delay a call to a Jabbascript function. Remember that the second argument is milliseconds, and not seconds. Eg.
setTimeout('alert("Hello")', 1000);
--
Richard Heyes
In Cambridge? Employ me
http://www.phpguru.org/cv
+----------------------------------------+
| Access SSH with a Windows mapped drive |
| http://www.phpguru.org/sftpdrive |
+----------------------------------------+
.
- References:
- php mysql live feed
- From: admin
- php mysql live feed
- Prev by Date: Re: [PHP] php mysql live feed
- Next by Date: syntax of sprintf
- Previous by thread: Re: [PHP] php mysql live feed
- Next by thread: RE: [PHP] php mysql live feed
- Index(es):
Relevant Pages
|