大家好我在codeigniter框架上做了应用程序,我试图回应特定用户的用户信息,但它并没有真正起作用。这个名字没有得到回应。此外,我的数据库中所有用户的电子邮件都被回复。
(指向右侧调谐器配置文件的链接虽然有效,但链接的名称不是。它是一个空白链接。 这是我的查看文件:
foreach($userdetail_list as $row): ?>
<tr>
<td>
<a href="<?php echo base_url() . 'User/userdetails/'.$row['user_id']?>">
<?php echo $row['voornaam']; ?>
</a>
</td>
<td>
<?php echo $row['email'];?>
</td>
</tr>
<?php endforeach; ?>
我的模特档案:
function getdata($user_id){
$this->db->select("*");
$this->db->from('users');
$this->db->where('user_id', $user_id);
$query = $this->db->get();
return $query->result();
}
public function getUserInfo($user_id) {
$arrReturn = array();
$this->db->select('*');
$this->db->from('users');
$this->db->where('user_id', $user_id);
$query = $this->db->get();
$result = $query->result_array();
if (!empty($result)) {
$arrReturn = $result[0];
}
return $arrReturn;
}
我的控制器文件:
public function userdetails($user_id)
{
//load the User_model
$this->load->model('User_model');
//call function getdata in de Product_model
$data['userdetail_list'] = $this->User_model->getdata($user_id);
$data['user'] = $this->User_model->getUserInfo($user_id);
//laad view
$data['main_content'] = 'profiel_user';
$data['main_content'] = 'details';
$this->load->view('profiel_user',$data);
}
所以基本上在视图文件上,我只想要使用user_id而不是所有用户电子邮件回复1个特定用户的1封电子邮件,我也希望在视图页面上看到未被回显的名称及其一个空白链接。 name = voornaam
答案 0 :(得分:1)
试试这个
模型功能
public function userdetails($user_id) {
$this->load->model('user_model');
$data['userdetail_list'] = $this->user_model->getdata();
$this->load->view('profiel_user', $data);
}
控制多个用户
<?php foreach($userdetail_list as $row){ ?>
<tr>
<td>
<a href="<?php echo base_url('user/userdetails/'.$row['user_id']);?>">
<?php echo $row['voornaam']; ?>
</a>
</td>
<td>
<?php echo $row['email'];?>
</td>
</tr>
<?php } ?>
查看多个用户列表
public function userdetails($user_id) {
$this->load->model('user_model');
$user_info = $this->user_model->getUserInfo($user_id);
$data['user_id'] = $user_info['user_id'];
$data['username'] = $user_info['username'];
$this->load->view('profiel_user', $data);
}
或获取单个用户数据
<a href="<?php echo base_url('user/userdetails/' . $user_id);?>"><?php echo $username;?></a>
查看
或单用户选项
public void ShowAppointements()
{
foreach (Termin termin in MainWindow.termine)
{
if (termin.week == Int32.Parse(txtWeek.Content.ToString()))
{
Rectangle rectangle = new Rectangle();
Kalender.Children.Add(rectangle);
Grid.SetRow(rectangle, termin.start + 2);
Grid.SetColumn(rectangle, termin.day * 2 - 1);
Grid.SetColumnSpan(rectangle, 2);
Grid.SetRowSpan(rectangle, termin.end - termin.start);
rectangle.Fill = termin.color;
}
}
}