摘要:
分类表字段: id(主键),name(分类名称), pid(空为顶级,不为空为上级id)atlant模板 【我的表名:qr_domelamp_node】 产品表: no,name,spec ...根据自己的产品表填写 【我的表名:qr_domelamp_node】 关联表:id(主键),domela 阅读全文
摘要:
function get_categories_tree(){ $cat_class = array(); /* 适用与无限极分类展示 */ /* 获取当前分类及其子分类 (包括自己)*/ $res = Db::name('DomelampNode')->where('pid',null)->ord 阅读全文
摘要:
mysql 会员表字段 parent_id lt rt level 默认lt=0 rt=1 level=1 会员注册插入会员表$userinfo = Db::name('User') ->where('userkey',$pid) ->field('parent_id,id,userkey,user 阅读全文
摘要:
手机版推荐插件(http://jqweui.com/extends)需要引用文件{load href="/static/shop/css/dropload.css" /}{load href="/static/shop/js/jquery.min.js" /}{load href="/static/ 阅读全文
摘要:
$brandres = $db->select("select brand_id,brand_name from ecs_brand where $partamemter and is_show = 1 and brand_name like '%$keyword%'"); if(!empty($b 阅读全文
摘要:
$a = $this->subtext($b,10);//字符串截取 显示长度 //字符串截取 参数 (变量 长度) function subtext($text, $length) { if(mb_strlen($text, 'utf8') > $length) return mb_substr( 阅读全文
摘要:
<a href="http://m.kuaidi100.com/result.jsp?nu=快递单号">快递单号</a> 阅读全文
摘要:
function ResizeImage($im,$maxwidth,$maxheight,$name){ $smalladdrname="../upfile/";//缩略图存放目录位置 $RESIZEWIDTH='720';//定义最大宽 $RESIZEHEIGHT='285';//定义最大高 $ 阅读全文
摘要:
$res = $this->nosms($code,$mobile); //调用 function nosms($code,$mobile){ $post_data = array(); $post_data['userid'] = 1234; //ID $post_data['account'] 阅读全文
摘要:
一、UNION和UNION ALL的作用和语法UNION 用于合并两个或多个 SELECT 语句的结果集,并消去表中任何重复行。UNION 内部的 SELECT 语句必须拥有相同数量的列,列也必须拥有相似的数据类型。同时,每条 SELECT 语句中的列的顺序必须相同.SQL UNION 语法:sql 阅读全文