Tuesday, 15 March 2011

php - How to show radio button from database using Codeigniter -



php - How to show radio button from database using Codeigniter -

i have read user guide , tutorial this, i'm still new bie @ time in code igniter hard understanding it, how can checked in radio button ?

big thanks

here controller class="snippet-code-html lang-html prettyprint-override">public function updateproduct($id) { $data['product'] = $this->products_model->getproduct($id); $this->load->view('update_product_view', $data); } public function updateproductdb() { $data=array( 'nama'=>$this->input->post('nama'), 'umur'=>$this->input->post('umur'), 'hoby'=>$this->input->post('hoby'), 'jk'=>$this->input->post('jk'), 'alamat'=>$this->input->post('alamat')); $condition['id'] = $this->input->post('id'); $this->products_model->updateproduct($data, $condition); redirect('products'); }

class="snippet-code-html lang-html prettyprint-override">here model <?php //file products_model.php class products_model extends ci_model { function __construct() { parent::__construct(); } function getallproducts() { //select semua info yang ada pada table msproduct $this--->db->select("*"); $this->db->from("anggota"); return $this->db->get(); } //ini berfungsi untuk info yang di pilih berdasarkan id atau user yang klik */ function getproduct($id) { //select produk berdasarkan id yang dimiliki $this->db->where('id', $id); //akan melakukan select terhadap row yang memiliki productid sesuai dengan productid yang telah dipilih $this->db->select("*"); // select $this->db->from("anggota"); //tabel homecoming $this->db->get(); } function addproduct($data) { //untuk insert ke database $this->db->insert('anggota',$data); } function updateproduct($data, $condition) { //update produk $this->db->where($condition); //hanya akan melakukan update sesuai dengan status yang sudah ditentukan $this->db->update('anggota', $data); //melakukan update terhadap table msproduct sesuai dengan info yang telah diterima dari controller } function deleteproduct($id) { //delete produk berdasarkan id $this->db->where('id', $id); $this->db->delete('anggota'); } }

and view

class="snippet-code-html lang-html prettyprint-override"><input type="text" name="jk" value="<?php echo $detail->jk; ?>">

try this, add together in controller before phone call view

$radio_data = array( 'name' => 'jk', 'id' => 'jk', 'value' => $detail->jk, 'checked' => true, 'style' => 'margin:10px', ); $data['jk']=form_radio($radio_data);

php codeigniter radio

No comments:

Post a Comment