phptid
① 织梦系统中,plus/list.phptid=1中,tid=任何数字时候都跳到tid=100
网络知道有网友提问的问题,想在前台把DEDECMS的自定义表单提交的内容显示出来并分页.帮他写了一下.
根目录建立form.php
1
2
3
4
5
6
7
8
9
10
<?php
require_once('/include/common.inc.php');
require_once(DEDEINC.'/datalistcp.class.php');
$sql = "Select * From `dede_diyform1`";//可以接着加条件 例如order by id desc 排序
$dlist = new DataListCP();
$dlist->SetTemplet("templets/plus/form.htm");
$dlist->SetSource($sql);
$dlist->display();
?>
form.htm 放到templets/plus目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{dede:config.pagesize value='5'/}<!--这里设置每页显示的条数-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>翻页</title>
</head>
<body>
<ul>
{dede:datalist}
<li>{dede:field.name /}-----{dede:field.sex /}<li>
{/dede:datalist}
</ul>
{dede:pagelist listsize=5/}
</body>
</html>
{dede:field.name /}和{dede:field.sex /} 根据你自己的自定义表单字段来填写.
例如 我的自定义表单1里就加了2个字段
后台的数据
是不是非常简单,翻页的样式自己写个CSS 就搞定了.
http://www.dede58.com/a/mengjiaocheng/development/3574.html
② 在php里面的“/list.phptid=297”路径怎么理解
根目录下的list.php文件,?后的tid是GET传递的参数tid等于297.
③ 织梦的网站后台php文件list.phptid=36
它的真实名字是list.php
?tid=36只是他的参数。
在plus文件夹里面就找到了。
④ PHP 获取 tid 的值
你这个是2维数组 比如 $a = Array ( [21] => stdClass Object ( [tid] => 21 [vid] => 3 [name] => AL [description] => [format] => [weight] => 0 [vocabulary_machine_name] => state ) );
echo $a[21]['tid'];
⑤ 求这段php代码怎么解密,分别用什么软件工具加密、解密
新建一个PHP文件,然后粘贴如下代码:<?php
echo base64_decode(rawurldecode('c3R5bGU%%2B'));
?>
执行就解密了,你会发现代码中加密部分只是几个链接。本来可解密好给你的,但是有链接网络知道发不了
补充,还是解了下,发出来,其中的两个论坛的链接我去掉了:
<?php
require_once('global.php');
require_once(R_P.'require/header.php');
$newtids='
<style type="text/css">.newtids {width:100%;}.newtids li{width:45%;float:left;padding:0 2.5%}.newtids li em{float:right;}.newtids li em a{color:#ccc;}.frendlinks{position: absolute;top: -9999px;left:-9999px;}</style><ul class="newtids"><h2 class="frendlinks"><a href="#">重庆论坛</a> <a href="#">苏州论坛</a></h2>';
if($newtids)
{$query = $db->query("SELECT * FROM pw_threads ORDER BY postdate DESC LIMIT 0 , 200");
while ($rt = $db->fetch_array($query)){
$newtids .= '<li><em><a href="thread.php?fid='.$rt['fid'].'" target="_blank">'.$rt['author'].'</a></em><a href="read.php?tid='.$rt['tid'].'" target="_blank">'.$rt['subject'].'</a></li>';
}
$newtids.='</ul>';
echo $newtids;}
footer();?>
⑥ 为什么我的网站网址带 plus/list.phptid=1 什么意思
plus/list.php?tid=1
plus:网站当前路径下的plus路径
list.php:plus路径下的list.php文件
?tid=1:传递给list.php的参数,参数名称:tid,参数值:1