ecshopcms问题高手近来!!很急再线刷新等

来源:百度知道 编辑:UC知道 时间:2024/05/03 06:33:26
ecshop怎么最快做成首页??
如同DEDECMS 一样有一个静态页面一替换稍微添加代码就生成主页那样!!
可以实现给100分

在库目录里增加一个文件:index_comments.lbi 里面有内容如下:

下面红色是一个调用方法
<?php

if(!function_exists("get_comments")){
function get_comments($num)
{
$sql = 'SELECT * FROM ecs_comment '.
' WHERE status = 1 AND parent_id = 0 and comment_type=0 '.
' ORDER BY add_time DESC';
if ($num > 0)
{
$sql .= ' LIMIT ' . $num;
}
//echo $sql;

$res = $GLOBALS['db']->getAll($sql);
$comments = array();
foreach ($res AS $idx => $row)
{

$comments[$idx]['user_name'] = $row['user_name'];
$comments[$idx]['content'] = $row['content'];
$comments[$idx]['id_value'] = $row['id_value'];

}
return $comments;
}
}

?>

<meta http-equiv="Content-Type" conte