phpweb 新闻模块.图片模块.产品模块 上一页下一页翻页插件开发教程
phpweb新闻、产品、图片增加上一页下一页翻页教程,很多人问phpweb的新闻,图片,产品模块如何设置翻页今天就告诉大家
第一步:修改NewsContent.php PhotoContent.php ProductContent.php三个文件(对应新闻、图片、产品) 他们目录分别在 /news/module /photo/module product/module下
以图片模块(大概在77行)为例:
//获取该文章上一篇
$fsql->query("select * from {P}_photo_con where id>'$id' order by id asc limit 1");
if($fsql->next_record())
{
$pre_info =$fsql->f('title')."";
$pre_link ="/photo/html/?". $fsql->f('id').".html";
}
else
{
$pre_info = "没有了";
$pre_link ="";
}
//获取该文章 下一篇
$fsql->query("select * from {P}_photo_con where id<'$id' order by id desc limit 1");
if($fsql->next_record())
{
$nex_info = $fsql->f('title')."";
$nex_link ="/photo/html/?" .$fsql->f('id').".html";
}
else
{
$nex_info = "没有了";
$nex_link ="";
}
将上面字段photo改成news或product就可以相应更改图片或新闻模块了
然后搜索$var=array ( 数组,
加入如下代码
'nex_info' => $nex_info,
'pre_link' => $pre_link,
'nex_link' => $nex_link,
'pre_info' => $pre_info
这样程序代码我们就写好了。最后只要在相应的模板中,如图片 tpl_photo_content.htm里加入
//这里上一页下一页 要根据实际情况判断,看你的排序顺序是根据发布时间的正序还是逆序
上一个产品:<a href="{#pre_link#}" target="{#target#}" >{#pre_info#}</a>
下一个产品:<a href="{#nex_link#}" target="{#target#}" >{#nex_info#}</a>
可以了 图片,新闻模块也以此类推
页:
[1]