RE: [PHP] php mysql live feed



Todd

I want to thank you. You sent me thinking in the right direction to resolving this issue. I now have successfully created a live Pika Card status GUI using PHP, MYSQL, AJAX.

The key word in what you said was unique function. I was not thinking to write a function. I was looking for the quick solve (php MySQL loop or something stupid). Not only does this work flawless but it has surpassed all my expectations of the gui.

Todd thank you again for your suggestions and you helped me allot.












Nameless,

I see someone mentioned the setTimeout(function, milliseconds) function for
JavaScript. I would also like to point out that you can use
setInterval(function, milliseconds) in order to have an event repeat at a set
interval. For instance, let's say you had a page laid out like so:

---
<div id="blah">
Text here
</div>
---

You would want to add a script somewhere that would begin the interval in order
to update the div:

---
<script type="text/javascript">
function ajaxRequest()
{
// <insert postback code here>

document.getElementById("blah").innerHTML = ajax.responseText;
}

var t = setInterval("ajaxRequest()", 5000);
</script>
---

This assumes that your XmlHttpRequest object is named "ajax". Assigning the
interval to variable "t" ensures that you can clear the interval if you need to
(via "clearInterval(t);").

I suppose "innerText" can be used instead of "innerHTML", as well. I would
recommend using innerHTML only if you will be populating the div with HTML
code, however.

Hope this helps,


Todd Boyd
Web Programmer


-----Original Message-----
From: admin@xxxxxxxxxxxxxxxxxxx [mailto:admin@xxxxxxxxxxxxxxxxxxx]
Sent: Tuesday, May 20, 2008 3:25 PM
To: php-general@xxxxxxxxxxxxx
Subject: [PHP] php mysql live feed

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

Frustrated Rick

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
.



Relevant Pages

  • Re: Looking for some help
    ... Not sure if this can be done in all php and mysql or have to add anything ... To prevent giving credits on any refresh. ... Save the last refresh time and check it for the interval you want have. ...
    (alt.php)
  • RE: [PHP] php mysql live feed
    ... You would want to add a script somewhere that would begin the interval in order to update the div: ... [PHP] php mysql live feed ... I am trying to use php to pull mysql data and refresh the mysql data ... I want the data to refresh but not the screen. ...
    (php.general)
  • Re: [PHP] php mysql live feed
    ... 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. ... 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. ...
    (php.general)
  • Re: [PHP] php mysql live feed
    ... I am trying to use php to pull mysql data and refresh the mysql data ... I want the data to refresh but not the screen. ... where you can open a php script and the data changes on the page as ...
    (php.general)
  • Re: I am totally stumped..with this on..LOAD_FILE Mysql+PHP= FSCK!!
    ... What I am trying to do is to upload files and stuff them in a mysql database. ... I copied the temporary file to somewhere else, and then handed it to MySQL..THAT WORKED.. ... Is there a way to force a close on the file..maybe that's the problem Mysql is opening a file that is not flushed to disk maybe? ... I gew the feeling its maintaining its own picture of file objects, and doesn't actually flush to the disk unless you do a copy or close php.. ...
    (comp.lang.php)