add.php,添加记录,内容:
<a href="<?php echo APP_URL ?>/item/index">成功添加<?php echo $count ?>条记录,点击返回</a>
view.php,查看单条记录,内容:
<form action="<?php echo APP_URL ?>/item/update" method="post"> <input type="text" value="<?php echo $item['item_name'] ?>"> <input type="hidden" value="<?php echo $item['id'] ?>"> <input type="submit" value="修改"> </form> <a href="<?php echo APP_URL ?>/item/index">返回</a>
update.php,更改记录,内容:
<a href="<?php echo APP_URL ?>/item/index">成功修改<?php echo $count ?>项,点击返回</a>
delete.php,删除记录,内容:
<a href="<?php echo APP_URL ?>/item/index">成功删除<?php echo $count ?>项,点击返回</a>
4.5 应用测试
这样,在浏览器中访问 todo 程序:,就可以看到效果了。
以上代码已经全部发布到 github 上,关键部分加航了注释,仓库地址:https://github.com/yeszao/fastphp,欢迎克隆、提交。
要设计更好的MVC,或使用得更加规范,请看《MVC架构的职责划分原则》 。