我有一个我想连续执行的代码,而不是阻止网站加载。我需要每秒钟左右更新一次数据库中的记录。有人可以帮我怎么做吗?
这是代码:
while(true){
$hits++;
$db =& JFactory::getDBO();
$query = "UPDATE u32lb_mt_links SET link_hits='".$hits."' WHERE link_id='".$firma_id."'";
$db->setQuery( $query );
$db->query();
sleep(1);
}