`
lxj8749
  • 浏览: 66633 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

F3-fatfree 简单使用

    博客分类:
  • php
 
阅读更多

index.php

F3::route('GET /blog', 'blog->run');

 

 

app/blog.php

class blog extends F3instance {
 function beforeroute() {
  
 } 
 
 function run(){
  $data=DB::sql("select * from admin_group");
  $this->set("data",$data);

  print_r($data);
 }

 function afterroute() {
  
  echo Template::serve("blog.html");
 }
}

 

ui/blog.html

<include href="header.html"/>

<ul>
<repeat group="{{@data}}" value="{{@item}}">
<li>{{@item.name}}</li>
</repeat>
</ul>
{{count(@data)}}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics