从数据库中获取数据- PHP编码器



我想从数据库中获取一些数据(学生详细信息),但我的代码不工作。

这是我的控制器

   public function Student_Detail()
   {
     $student_id = $this->uri->segment(3);
     $record = $this->WebAdmin_Model->Student_Details($student_id);
     $this->load->view('admin/template/header.php');
     $this->load->view('admin/students/student_details', $record);
     $this->load->view('admin/template/footer.php');   
   }

这是我的模型

 public function Student_Details($student_id)
    {
    $query = $this->db->query("SELECT s.`student_id`, 
                                      s.`std_email`, 
                                      s.`std_fname`, 
                                      s.`std_lname`
                               FROM `student_main` AS s
                               WHERE s.`student_id` = $student_id");
 return $query->result();  
    }

This is my View

     <section class="panel">
     <div class="user-heading">
    <img src="<?=base_url();?>images/profile-avatar.jpg" alt="">
     </div>
<ul class="nav nav-pills nav-stacked">
<li> <?php echo $record->std_fname; ?></li>
<li> <?php echo $record->std_lname; ?></li>
<li> <?php echo $record->std_email; ?></li>
</ul>
 </section>

请注意,查询没有问题。我想知道如何获取学生的详细信息。它给了我以下错误。消息:未定义变量:record

试试这个:

在你的控制器中:

$data['record'] = $this->WebAdmin_Model->Student_Details($student_id);
$this->load->view('admin/students/student_details', $data);

在你看来:

<ul class="nav nav-pills nav-stacked">
<?php
foreach($record->$row){
?>
<li> <?php echo $row->std_fname; ?></li>
<li> <?php echo $row->std_lname; ?></li>
<li> <?php echo $row->std_email; ?></li>
<?php
}
?>
</ul>

你需要传递你的模型数据到记录数组,然后传递到视图

控制器

 $student_id = $this->uri->segment(3);
     $record['data'] = $this->WebAdmin_Model->Student_Details($student_id);// store data into record array
     $this->load->view('admin/template/header.php');
     $this->load->view('admin/students/student_details', $record);
     $this->load->view('admin/template/footer.php');   

使用foreach循环检索数据

 <?php 
    foreach($data as $record)// use foreach loop
    { ?>
    <li> <?php echo $record->std_fname; ?></li>
    <li> <?php echo $record->std_lname; ?></li>
    <li> <?php echo $record->std_email; ?></li>
    <?php } ?>

您需要这样做,因为codeigniter试图从$record中提取变量,但失败了。所以要使之成为可能,就要使之成为可能,

 $record['record'] = $this->WebAdmin_Model->Student_Details($student_id);

然后在视图中,

<ul class="nav nav-pills nav-stacked">
<li> <?php echo $record->std_fname; ?></li>
<li> <?php echo $record->std_lname; ?></li>
<li> <?php echo $record->std_email; ?></li>
</ul>

因为codeigniter会从$ record数组中提取变量

最新更新