Welcome Guest, Not a member yet? Register   Sign In
Having problems with creating a CRUD..
#17

[eluser]ealonw[/eluser]
Much progress!! thank you guys so much... one problem left though.. whn click the EDIT link it repopulates the form with only the first row of the database and not the row I select... strange... here's updated the code..
*****************************************
function update($id=NULL)
{
$this->load->helper('form');
// $id = $this->uri->segment(2);
$query = $this->db->getwhere('myname', array('id', $id));


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

if ( count($_POST) > 0 )
{
$this->db->where('name', $name);
$this->db->update('myname', $_POST);
redirect('');
}
else
{
$this->load->view('update_name_view', $data);
}
}
}
************************************************************
<?= form_open('name/update/'.$name->id); ?>
First Name
<input type="text" name="name" maxlength="20" value="<?=$name->name?>">
<br><br>
&lt;input type="submit" name="submit" value="submit"&gt;
&lt;/form&gt;
&lt;?=form_close()?&gt;


Messages In This Thread
Having problems with creating a CRUD.. - by El Forum - 06-05-2008, 12:03 PM
Having problems with creating a CRUD.. - by El Forum - 06-05-2008, 12:22 PM
Having problems with creating a CRUD.. - by El Forum - 06-05-2008, 05:14 PM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 11:26 AM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 11:34 AM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 11:38 AM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 11:46 AM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 12:01 PM
Having problems with creating a CRUD.. - by El Forum - 06-06-2008, 12:16 PM
Having problems with creating a CRUD.. - by El Forum - 06-07-2008, 01:58 AM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 12:45 PM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 01:01 PM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 02:22 PM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 02:54 PM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 03:22 PM
Having problems with creating a CRUD.. - by El Forum - 06-10-2008, 03:47 PM
Having problems with creating a CRUD.. - by El Forum - 06-11-2008, 04:50 PM
Having problems with creating a CRUD.. - by El Forum - 06-11-2008, 05:57 PM
Having problems with creating a CRUD.. - by El Forum - 06-12-2008, 10:09 AM
Having problems with creating a CRUD.. - by El Forum - 06-12-2008, 12:33 PM
Having problems with creating a CRUD.. - by El Forum - 06-12-2008, 02:52 PM
Having problems with creating a CRUD.. - by El Forum - 06-12-2008, 08:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB