| |
|
|
|
|
|
''
AND (
d.datebegin is null
or
d.datebegin < now( )
)
AND (
d.dateend IS NULL
OR d.dateend > now( )
)
order by d.datepublished desc,d.datecreated desc
";
$_query=tep_db_query($query_string_select);
while ($_array=tep_db_fetch_array($_query)){
$_arr[]=$_array;
}
if(isset($_arr)){
$smarty->assign("latestnews",$_arr);
unset($_arr);
}
require_once '../init_end.php';
$smarty->template_dir="../templates"; //设置模板目录
$smarty->compile_dir="../templates_c"; //设置编译目录
$smarty->display('sc_financialreports.tpl');
?>
|
|
|