DsFqIEnm litphp - Big Bug Ban

Big Bug Ban

兴趣 践行 创新

Archive for the ‘litphp’ tag

php 在线考试系统 (3) 小框架 litphp

 

本来是想用tp的,

但是感觉tp大了点,

其实个人觉得php的方向应该是快速开发

什么mvc那类的,只用做到模版和代码分离即可

没必要搞些复杂的东西

想复杂 想规范化用 java啊什么的都可以 为什么非要用php呢?

各家写各家的mvc。那好吧。我也写一个,litphp 意思就是轻的php

写的很陋。缓存大体设计好了。不用缓存倒是可以用

只是list标签不能递归

http://code.google.com/p/lit-php/ 进度 代码都在这里

欢迎多指点。

给个demo。

控制文件 index.php

<?php

    include_once("../core/lite.php");

    $res=($db->sql("SELECT * FROM `tbtk` LIMIT 0 , 30 "));

    $m->a("sel",$res);

    $m->a("title","党校考试系统");

    $m->d("index");

?>

模版文件index.html

<html>
<head>
<title>{$title}</title>
</head>
<body>
<form action="sub.php" method="post">
 <list name="sel" id="ls">
  <p>1. {$ls.title} <br/>
    <label>
      <input type="radio" name="RadioGroup{$ls.tmid}" value="a">
      {$ls.a}
    </label>
  </p>
 </list>
 <input type="submit" />
 </form>
<list name="zxc" id="ls">
        !!!
</list>
</body>
</html>

Written by princehaku

17 9 月, 2010 at 11:22 下午