我正在尝试从数据库中的表中获取事件的名称,我需要将此数据插入下拉列表中,然后有人单击它们,然后显示此特定事件的信息...
这是我到目前为止的代码..
<?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>";
}
?>
你能告诉我如何将事件名称放在下拉列表中吗?
谢谢!