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
Share on other sites

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.