📄 featured.php
字号:
<?php
/*
网络商店 - 吉鑫网络
http://www.chinaifc.com
Copyright (c) 2000,2001 网络商店
汗化版权所有吉鑫网络
*/
////
// Sets the status of a featured product
function tep_set_featured_status($featured_id, $status) {
return tep_db_query("update " . TABLE_FEATURED . " set status = '" . $status . "', date_status_change = now() where featured_id = '" . $featured_id . "'");
}
////
// Auto expire featured products
function tep_expire_featured() {
$featured_query = tep_db_query("select featured_id from " . TABLE_FEATURED . " where status = '1' and now() >= expires_date and expires_date > 0");
if (tep_db_num_rows($featured_query)) {
while ($featured = tep_db_fetch_array($featured_query)) {
tep_set_featured_status($featured['featured_id'], '0');
}
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -