Ai
33 Star 74 Fork 3

speedphp/speed

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MainController.php 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
speedphp 提交于 2016-06-24 10:49 +08:00 . 修正注释 感谢tanidea的指出
<?php
class MainController extends BaseController {
// 首页
function actionIndex(){
// 连个hello world都木有?
// 回答:页面自动输出,请看main_index.html
}
// 接收提交表单
function actionReceive(){
// 把提交的数据先dump($_POST)出来看看是良好的习惯。
if(isset($_POST["username"])){
echo "已经提交了".$_POST["username"];
}else{
echo "没有填东东呢";
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/SpeedPHP/speed.git
git@gitee.com:SpeedPHP/speed.git
SpeedPHP
speed
speed
master

搜索帮助