我正在尝试获取记录并让应用程序的用户编辑记录的详细信息并更新新的详细信息。但是当我 print_r ($row->emp_name) 它返回时: John Smith 和 ($row->emp_type) 返回 Cachier 这是正确的值。但是为什么这些数据没有传递到视图中的“emp_name”和“emp_type”输入?
第二个问题:我还想知道如何为下拉列表定义一个值,以便在加载时选择。请注意,下拉值必须来自数据库,并且应该以与上述类似的方式检索。
看法:
<?php
$js = 'id="emp_name"';
echo form_input('emp_name', $emp_name, set_value('emp_name'), $js);
?>
控制器:
function index() {
$this->load->model('edit/default_price_model');
//$data['query'] = $this->default_price_model->get_employees_table();
$this_employee['emp_name'] = $this->default_price_model->current_cmployees();
//$temp_array=array_merge($data, $this_employee);
$this->load->view('/edit/employees', $this_employee);
}
function form_validation() {
if($this->input->post('this_employee') == "View") {
$this->populate_form();
}
else {
$this->load->library('form_validation');
$this->form_validation->set_rules('emp_name','Employee Name', 'required|min_length[3]|max_length[60]');
$this->form_validation->set_rules('emp_type','Employee Name', 'required');
$this->form_validation->set_rules('emp_description','Optional Description', 'max_length[500]');
if ($this->form_validation->run() == FALSE ) {
$this->index();
}
else {
$this->update_table();
}
}
}
function populate_form() {
$this->load->model('edit/default_price_model');
$selection = $this->input->post('select_employee');
$data['emp_name'] = $this->default_price_model->get_employees_table($selection);
$this->index();
}
模型:
function get_employees_table($selection) {
$query = $this->db->query(" SELECT emp_name, emp_type, emp_description
FROM employees
WHERE emp_name='$selection'
ORDER BY emp_name ASC
LIMIT 1");
if($query->num_rows()>0) {
foreach($query->result() as $row) {
$row->emp_name;
$row->emp_type;
$row->emp_description;
}
}
}