[phpBB扩展开发] 第一个例子: 与数据库交互输出所有用户名

创建文件example1.php,放到phpbb根目录下,如下:
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);

include($phpbb_root_path . 'common.' . $phpEx);    


$sql = 'SELECT * FROM ' . USERS_TABLE ;
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result)) {
	echo $row['username'] . '<br/>';
}
?>


运行后输出
引用

Anonymous
admin
AdsBot [Google]
Alexa [Bot]
Alta Vista [Bot]
Ask Jeeves [Bot]
Baidu [Spider]
Exabot [Bot]
.........
allen

你可能感兴趣的:(sql,PHP,Google)