我有phpbb论坛,我想在注册页面中添加一个字段...修改是为了让用户能够选择他们的角色..例如成为版主..或成为普通会员或..我是实际上使论坛有点私密,我将用户分组,因此他们对某些论坛的访问受到限制。无论如何,我有 html 模板文件,我想从 php 文件代码中获取下拉菜单列表
这是我的php代码
<?php
include '/blah/config.php';
$con = mysql_connect($dbhost, $dbuser, $dbpasswd);
if(!$con)
{
die("Couldn't Connect: ".mysql.error());
}
mysql_select_db($dbname, $con);
$result = mysql_query("SELECT group_name FROM phpbb_groups");
$array = array();
while($row = mysql_fetch_array($result))
{
$array[] = $row[0];
}
mysql_close($con);
foreach( $array as $group_name)
{
echo $group_name."</br>"; // I want to put this value in the dropdown list in the html file
}
?>
这是我要编辑的 html 代码的一部分
<dt><label>GroupID:</label></dt>
<dd><select name="group_id" id="group_id"" tabindex="7" class="autowidth">I want to get the data from php in here</select></dd>
PS:模板文件为html文件,不能重命名为php