我正在使用 Codeigniter 制作一个社交网络,并且当您已经在关注一个人时,我试图让用户视图显示一个按钮我该怎么做?
模型
<?php
class User_model extends CI_Model {
function get_All(){
$this->db->select('*');
$this->db->from('membership');
// $this->db->join('following', 'following.id = membership.id');
$q = $this->db->get();
if($q->num_rows() > 0) {
foreach ($q->result() as $rows) {
$data[] = $rows;
}
return $data;
}
}