Blogger Information
Blog 32
fans 0
comment 0
visits 24111
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
随笔~不定时更新
Nevermore的博客
Original
786 people have browsed it

关于$.post 提交数据后function(data){}中只能接收php文件返回的第一条语句。

关于session,任何页面要使用都要session_start();——2018年10月18日22点26分

关于Db数据库封装类中,构造where语句  ltrim 去除'and' 字符,会把后面查询关键字中的包含有'and'字符去掉,暂未解决。——2018年10月19日13点54分

博客中文章分类,分类中没有内容的话,数据库报错,暂未解决——2018年10月20日17点11分(已解决,判断total总数,如果有再执行后续后续查询代码)

函数或者类中方法,记得写return,特别框架中,其他地方调用,漏写,一时半会找不到。——2018年10月29日20点11分

tp框架中,session全局,为什么会有think 作用域——2018年11月3日10点54分

论坛项目。session设置。在控制器中,先判断有没有session。如果有,就赋值,没有就赋值false,再到模板中判断。

if(session("?user")){
   $this->assign('user',session("user"));
}
else
{
   $this->assign('user',false);
}


模板:<?php  if($user) echo '<span style="color: #fff">欢迎用户:'.$user.'</span><a href="javascript:;" onclick="logout()"> 退出</a>';
 else echo'

<button class="btn btn-info" onclick="login()">登录</button>
<button class="btn btn-success">注册</button> ';
 ?>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post