Thanks for you response Brad. I know about using meta tag to refresh or onload = window.settimeout("url", time).
But this method reloads the whole page, which is not what i want to happen.
Solution I am looking for id only to call a php object function to display in a html <td> or say <div>
<td>Logged:
<?php for($i = 0; $i < count($loglist); $i++) print $loglist[$i] . " "; ?>
</td>
with meta-tag above works fine, but its reloading the whole page at the same time.
Is there a way that I can use onLoad=setTimeOut("call php function", time) to do the same without having to load the whole page?? I guess my question is, if there is a way to call php function from java?? not sure if this is a ridiculous question lol
Perhaps I could get the list from database using javascript , so I could call that function using jscript using setTimeOut?
If there is a solution please reply
Thanks a lot
masikwha
let me jsut add this:
what i am trying to is similar to this->
as you are browsing on this forum, you see the other people logged which is displayed, right? but its based on your last refresh or mouse click? Same sort of display like on this forum but without having to reload the whole page but done under certain time interval jsut for that purpose of displaying the logged people and not the reload of whole page content!. As you can see, if you had to reload this page it would take long time to make all sql queries and other thing right?
I guess this gives more clarity to what i am trying to do.
thanks