我创建了一个表单并添加了一个下拉列表,其中包含从数据库填充的选项。现在,我正在尝试添加另一个字段,该字段将根据下拉列表中的选定选项自动填充相应的值(来自数据库)。我已经做到这一点,但似乎无法添加第二个字段。任何建议?我是初学者,还在学习
wpcf7_add_shortcode('dropdown', 'my_new_createbox', true);
function my_new_createbox(){
global $wpdb;
$table_name = "calendar";
$events_title = $wpdb->get_results("SELECT * FROM $table_name");
$output = "<select name='events' id='events' onchange='document.getElementById(\"events\").value=this.value;'><option></option>";
foreach ( $events_title as $events_title ) {
$title = $events_title->event_title;
$output .= "<option value='$title'> $title </option>";
}
$output .= "</select>";
return $output;
}
events_title的相应数据是events_short中的存储,我试图在另一个字段中获取并填充。