预览加载中,请您耐心等待几秒...
1/3
2/3
3/3

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

Phpcms常用手册 1.css、图片、js路径。 默认:JS路径http://127.0.0.5/statics/js/{JS_PATH} 图片路径http://127.0.0.5/statics/images/{IMG_PATH} CSS路径http://127.0.0.5/statics/css/{CSS_PATH} http://wwwquan.com/index.php?a=show&catid=22&id=1502标签用处 http://bbs.phpcms.cn/thread-296020-1-1.html http://bbs.phpcms.cn/forum.php?mod=viewthread&tid=279355&extra=page%3D1%26filter%3Dtypeid%26typeid%3D7%26typeid%3D7 网站根目录{siteurl($siteid)} 当前栏目$r[catid] 当前位置{catpos($catid)} 2.修改phpcmsv9的分页样式 列表页phpcms/libs/functions/global.func.php 内容页module/content/functions/util.func.php 数据库配置文件\caches\configs\database.php 3.{loopsubcat($catid)$v} 4.调用同类栏目 {if$top_parentid} {pc:contentaction="category"catid="$top_parentid"num="15"siteid="$siteid"order="listorderASC"} {loop$data$r} <dt><ahref="{$r[url]}">{$r[catname]}</a></dt> {/loop} {/pc} {/if} 5.phpcmsv9调用当前栏目的同级栏目的几种方法 (1)单网页: {loop$arrchild_arr$cid}<!--只适应用单网页--> <li{if$catid==$cid}class="cur_link"{/if}><ahref="{$CATEGORYS[$cid][url]}/">{$CATEGORYS[$cid][catname]}</a></li> {/loop} (2)模型列表页: {pc:contentaction="category"catid="$parentid"num="25"siteid="$siteid"order="listorderASC"} <ul> {loop$data$r} <li{if$catid==$r[catid]}class="cur_link"{/if}><ahref="{$r[url]}/">{$r[catname]}</a></li> {/loop} </ul> {/pc} (3)内容页: {pc:contentaction="category"catid="$top_parentid"num="25"siteid="$siteid"order="listorderASC"} <ul> {loop$data$r} <li{if$catid==$r[catid]}class="cur_link"{/if}><ahref="{$r[url]}/">{$r[catname]}</a></li> {/loop} </ul> {/pc} 6.[v9]把自定义表单返回首页修改成返回上一页 文件地址:phpcms\modules\formguide\index.php showmessage(L('thanks'),APP_PATH); app_path是网站动态域名,也就是首页。在caches\configs\system.php下可以看到默认情况下是返回首页,这在某栏目做子网站的情况下就不方便了。 我们修改成如下代码即可实现自动返回前一页 showmessage(L('thanks'),HTTP_REFERER); HTTP_REFERER是页面来源的意思,也就是从哪里来回哪里去~~