我正在尝试从数据库中的表中获取事件的名称,我需要将这些数据插入下拉列表中,然后有人单击它们,然后显示此特定事件的信息......
这是我到目前为止的代码..
<?php
require "config.php"; // Your Database details
?>
<?PHP
$SQL = "SELECT title_en_US FROM civicrm_event";
$result = mysql_query($SQL);
// Write out our query.
$query = "SELECT title_en_US FROM civicrm_event";
// Execute it, or return the error message if there's a problem.
$result = mysql_query($SQL);
while ($db_field = mysql_fetch_assoc($result)) {
print $db_field['title_en_US'] . "<BR>";
}
?>
您能告诉我如何将事件名称放入下拉列表吗?
谢谢!
答案 0 :(得分:0)
请使用以下代码
$options='';
while($db_field = mysql_fetch_assoc($result))
{
$options .= "<option>".$db_field['title_en_US']."</option>";
}
对于html部分,
<select name="titles"><? echo $options; ?></select>