我创建了一个下拉菜单,我想在php文件中显示某些内容。不幸的是,当我点击子项时显示所有元素,虽然我只想显示一个元素(在我的情况下在div上带有id)。我很感激我有人告诉我如何才能实现只有选定的ID出现。
我的下拉菜单:
public function model_function($ex_data){
// Your Querys
// user return to send you query result to the controller anything
// Sample Example of query and return
$query = $this->db->select('*')
->where('your_column',$data['column_name'])
->get('your_table');
$your_result = $query->row_array();
if($this->db->affected_rows() > 0){
return your_result;
} else {
return FALSE;
}
}
我的foo.php
template = File.read('path/to/template.haml')
html = Haml::Engine.new(template).render(Object.new, :my_object => my_object)