PHP致命错误:调用非对象中的成员函数row()

时间:2012-07-31 08:43:14

标签: php codeigniter

你可以帮我解决我的代码我是php和codeigniter的新手,我试图将查询的结果提供给视图,但它总是出现错误“致命错误:调用成员函数行()在“非对象”中,我试图通过客户ID搜索客户信息并尝试将结果发送到视图本身

这是视图代码

 <?php echo form_open('home/cari_id');
?>
<table width='34%' align='left'>
    <tr>
        <td width="54%" align="left">ID Pelanggan</td>

        <td width="36%">
            <?php echo form_input('id',set_value('id'));?>
            <?php echo form_error('id');?>
        </td>
        <td width="10%">
            <?php echo form_submit('submit','Cari');?>
        </td>
    </tr>
</table> 

<br /><br />

<table width="68%" align="left">
    <tr>
        <td width="17%" align="left">Nama</td>
        <td>
            <?php   
                $row = $record->row();
                $nama1 = array(
                         'name' => 'nama',
                         'maxlength' => '100',
                         'size' => '50',
                         'style' => 'width:120%');
                echo form_input($nama1,$row->nama);?>
            <?php echo form_error('nama');?>
        </td>
    </tr>
    <tr>
    <td align="left">Alamat</td>
    <td>
        <?php 
            $alamat1 = array(
                        'name' => 'alamat',
                        'rows' => '5',
                        'cols' => '3',
                        'style' => 'width:200%');
            echo form_textarea($alamat1,$row->alamat);?>
        <?php echo form_error('alamat');?>
    </td>
    </tr>
    <tr>
        <td align="left">Golongan</td>
        <td width='29%'>
            <?php 
                $gol1 = array(
                        'name' => 'gol',
                        'maxlength' => '100',
                        'size' => '50',
                        'style' => 'width:40%');
                echo form_input($gol1,$row->golongan);?>
            <?php echo form_error('gol');?>
        </td>
        <td width="10%" align="left">Tarif</td>
        <td width="44%">
            <?php 
                $tarif = array(
                'name' => 'tarif',
                'maxlength' => '100',
                'size' => '50',
                'style' => 'width:30%');
                echo form_input($tarif,$row->tarif);?>
            <?php echo form_error('tarif');?>
        </td>
    </tr>
</table>

这里是我的代码控制器

public function cari_id()
{
    $this->auth->restrict();
   // mencegah user mengakses menu yang tidak boleh ia buka
    $this->auth->cek_menu(4);

    $this->load->library('form_validation');

    $this->form_validation->set_rules('id', 'ID Pelanggan', 'trim|required');
    //$this->form_validation->set_rules('nama','Nama','trim'|'required');
    //$this->form_validation->set_rules('alamat','Alamat','trim'|'required');
    //$this->form_validation->set_rules('gol', 'Golongan', 'trim|required');
    //$this->form_validation->set_rules('tarif', 'Tarif', 'trim|required');
    $this->form_validation->set_error_delimiters(' <span style="color:#FF0000">', '</span>');
    $id_pel = $this->input->post('id') ;
    //$data1 = $this->usermodel->get_list_bayar_pel($id_pel);
    //$data=$data1->row();
    $data1 = $this->usermodel->get_list_bayar_pel($id_pel);
    $data['record'] = $query->result_array();
    $this->template->set('title','Input Pembayaran | POS Application');
    $this->template->load('template','admin/input_pembayaran',$data);

}

和型号代码

function get_list_bayar_pel($id)
{
    $this->db->select('b.name as nama, b.address as alamat, c.nm_gol as golongan,d.rate_value as tarif');
    $this->db->from('account_t a, account_nameinfo_t b, golongan_t c, (select rate_value from rate_t a, golongan_t b where a.id_gol = b.id_gol) d');    
    $this->db->where('a.id_account = b.obj_id');
    $this->db->where('a.id_gol = c.id_gol');
    $this->db->where('a.id_account = "'.$id.'"');
    $result = $this->db->get();
    return $result;
    }

之前感谢

4 个答案:

答案 0 :(得分:0)

在控制器中写下这个

$data['record'] = $query->row();

并在视图中删除 php代码写

 <?php   

                $nama1 = array(
                         'name' => 'nama',
                         'maxlength' => '100',
                         'size' => '50',
                         'style' => 'width:120%');
                echo form_input($nama1,$record->nama);?>
            <?php echo form_error('nama');?>

在模型中

$result = $this->db->get('tablename')->row();

答案 1 :(得分:0)

$ record没有返回单行它返回一个集合要么使用current($ record) - &gt; row(),要么获取一行。

答案 2 :(得分:0)

在您的控制器中,您将获取多行

$data['record'] = $query->result_array();

应该是

$data['record'] = $query->row();

并在视图中给出$ row = $ record;而不是$ row = $ record-&gt; row();

答案 3 :(得分:0)

根据你的代码,你使用row()函数来检索视图中的数据,同时使用它来获取控制器:

 $data['record'] = $query->result_array();


只需使用其中一个(在Controller中):

$data['record'] = $query->result_array();

$data['record'] = $query->row();

然后在视图中处理数组

希望有所帮助:)


注意:
- 我建议你使用result_array()将数据检索到数组