You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @license GNU General Public License version 3.0 (GPLv3)
*
*/
define("IS_RAM_BANNERS_FILE",1);
require("global.php") ;
$qr = db_query("select * from songs_banners where type='listen' and active=1 and (start_date <= ".time()." or start_date=0) and (expire_date > ".time()." or expire_date=0) order by ord");
while($data = db_fetch($qr)){
db_query("update songs_banners set views=views+1 where id=$data[id]");