码迷,mamicode.com
首页 > Web开发 > 详细

php后台模板html拼接写法

时间:2015-10-19 17:12:26      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

 1 public function get_kefu_reply_list(){
 2         $wid=$this->_post(‘order_id‘);
 3         if(!$wid){
 4             echo(‘工单信息获取失败!‘);
 5             exit;
 6         }
 7         $where=null;
 8         $where[‘A.wid‘]=$wid;
 9         $list=M(‘kefu_reply‘)->alias("A")->join(‘z_user_common as  B on  A.uid=B.id‘)->
10         where($where)->field(‘A.*,B.realname,B.account‘)->order(‘A.do_time desc‘)->select();
11         foreach ($list as $key => $value) {
12             if(mb_strlen($value[‘content‘])>15){
13                 $list[$key][‘content_new‘]=mb_substr($value[‘content‘],0,6,‘utf-8‘); 
14             }else{
15                  $list[$key][‘content_new‘]=$value[‘content‘];
16             }
17             $list[$key][‘dotime‘]=date("Y-m-d H:i:s", $value[‘do_time‘]);
18         }
19         if($list){
20             $str="";
21             $str.="<table align=‘center‘ border=‘1‘ width=‘500‘ cellpadding=‘1‘ cellspacing=‘1‘>";
22             $str.="<tr>";
23             $str.="<td align=‘center‘>跟进人名称</td>";
24             $str.="<td align=‘center‘>跟进人账号</td>";
25             $str.="<td align=‘center‘>跟进内容</td>";
26             $str.="<td align=‘center‘>跟进时间</td>";
27             $str.="</tr>";
28             foreach($list as $k=>$v){
29                 $str.="<tr>";
30                 $str.="<td align=‘center‘>$v[realname]</td>";
31                 $str.="<td align=‘center‘>$v[account]</td>";
32                 $str.="<td align=‘center‘>";
33                 $str.="<a href=‘javascript:void(0);‘ a=‘$v[content]‘ onclick=‘get_detail_contents(this);‘ style=‘color:blue;‘>$v[content_new]...</a>";
34                 $str.="</td>";
35                 $str.="<td align=‘center‘>$v[dotime]</td>";
36                 $str.="</tr>";             
37             }
38             $str.=‘</table>‘;
39             echo $str;
40         }else{
41             echo 0; //暂无数据
42         }       
43     }

 

php后台模板html拼接写法

标签:

原文地址:http://www.cnblogs.com/719907411hl/p/4892118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!