分类: 前沿
phpstudy Apache和mysql成功启动却打不开本地站点
重启apace之后弹窗可能提示“AH00112: Warning: DocumentRoot [D:/phpstudy_pro/WWW/xxxxxxxxx] does not exist 站点目录不存在,请检查站点目录是否被删除”
并……
thinkphp按照父级栏目id数组进行排序输出显示
topid:顶级栏目字段
id:栏目数据表的栏目id
whereIn:用此进行数组条件查询
orderRaw:特殊排序条件
// 栏目首页 列表
public function index()
{
……
input使用file类型上传文件多图同时上传
单图上传
<input type="file" id="images" name="pic">
多图上传
<input type="file" id="images" name="pic[]" multiple>
a标签img等鼠标悬停title弹出提示框的样式修改
<a href="" class="tooltip" title="姓名" >测试一下</a>
<style type="text/css">
#tooltip {
border: 1px solid red;
backgroun……