Jump to content

Execute $query ever x seconds


antonyfal

Recommended Posts

Hi.

I have a query that determines if user is online/offline. Works perfectly when page loads. I want to change to auto run query every X seconds.

NOTES:

- The query is on a .php page with multiple other queries.

-IF it is possible to still run the query with-in this page? or make a separate file and include in an iframe? i would like to avoid the iframe and just $output the result of query every X seconds.

 

Here is my $query code:

$query = "SELECT `manager_id` FROM #__profiles_xref WHERE profileid = '$profid'";

$onofflineid=doSelectSql($query,1);

foreach ($onofflineid as $isonoffline){

$profmanagerid=$isonoffline->manager_id;

}

 

$query = "SELECT `session_id` FROM table_session WHERE userid = '$propmanagerid'";

$onofflinestatus=doSelectSql($query,1);

if (count($onofflinestatus)>0)

{

$output['PROPSTATUS']='Online';

} else {

$output['PROPSTATUS']='Offline';

}

Link to comment
https://forums.phpfreaks.com/topic/254792-execute-query-ever-x-seconds/
Share on other sites

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.