Welcome Guest, Not a member yet? Register   Sign In
how to take the url to became a variable
#4

[eluser]sherpa[/eluser]
Code:
function choose_testi()
    {
        $id = $this->uri->segment(3);
        $this->db->where('id_testimonial',$id); // moved to this location
        $query = $this->db->get('testimonial');
        $user_row = $query->row(); //return single row if you want to return a single row from the query
         /* Uncomment if you want ot return multiple rows from the dtabase */
        // $user_row = $query->result();

        //$query->result_array();  //removed this live
          
        if($user_row->num_rows() > 0)
        {
            $data[] = $user_row;
        }
        $this->load->view('adm_testimonial',$data);
    }

Code for Views (print the column fields in in your view
(it only for your understanding purpose )

Code:
echo $tanggal;
echo $email;
echo $nama;
echo $isi;


Messages In This Thread
how to take the url to became a variable - by El Forum - 03-31-2009, 08:17 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 08:20 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 08:48 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 09:30 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 09:35 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 09:56 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 10:00 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 10:04 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 10:05 PM
how to take the url to became a variable - by El Forum - 03-31-2009, 10:09 PM
how to take the url to became a variable - by El Forum - 04-01-2009, 01:23 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:11 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:28 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:36 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:45 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:55 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 07:09 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 07:14 AM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:33 PM
how to take the url to became a variable - by El Forum - 04-01-2009, 06:40 PM
how to take the url to became a variable - by El Forum - 04-01-2009, 07:36 PM
how to take the url to became a variable - by El Forum - 04-01-2009, 08:25 PM



Theme © iAndrew 2016 - Forum software by © MyBB