1、遍历目录生成<select>的内容。
<?php
function createOption($fname){
echo "<option>$fname</option>";
}
function tree($directory)
{
$mydir = dir($directory);
while($file = $mydir->read())
{
if( ($file != ".") && ( $file != "..") )
createOption($file);
}
$mydir->close();
}
$curPath = getcwd();
tree($curPath."/cmd");
?>
2、 基于thinkphp开发的网站集合
http://www.topthink.com/tag/product/thinkphp/2.html
3、Thinkphp开发手册在线文档
http://www.kancloud.cn/manual/thinkphp/1679
4、PHP获取关键字的请求参数
$id = $_GET['id']; // 获取get变量
$name = $_POST['name']; // 获取post变量
$value = $_SESSION['var']; // 获取session变量
$name = $_COOKIE['name']; // 获取cookie变量
$file = $_SERVER['PHP_SELF']; // 获取server变量
>>获取变量
>>echo I('get.id'); // 相当于 $_GET['id']
>>I('cookie.'); // 获取整个 $_COOKIE 数组