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

[eluser]ealonw[/eluser]
hmmmm.... i dont really understand what ur saying... the ID part I didnt think i needed.. why would i need that if i tell it to use fname POST? should it use id instead?

Im trying to create my own scaffolding... or CRUD.. what's missing in my function and view? the function is suppose to get the data from the database put it in a form to be "POST" back to databse... i can do this in scripts i just dont get the CI way... seems my problem is the view file at the bottom.... any brains out there?

*****************Controller Func****************
function update()

{
//error_reporting(0);
$data = array(
'id' => $id,
'fname' => $fname,
'lname' => $lname,
'email' => $email,
'comment' => $comment,
);

$this->db->where('id', $_POST['id']);
$this->db->update('usercomment', $data);

$this->load->view('update_contact_view');
}



*******************VIEW**************************************

<?php echo
//$hidden = array('id' => '$_POST[id]');

form_open('contact/update');


?>

<table border="0">
<tr><td>First Name:</td><td>
&lt;input type="text" name="fname" maxlength="20" value="what should be here"
</td&gt;</tr>
<tr><td>Last Name:</td><td>
&lt;input type="text" name="lname" maxlength="20" value=""&gt;
</td></tr>
<tr><td>Email:</td><td>
&lt;input type="text" name="email" maxlength="50" value=""&gt;
</td></tr>
</table>
<br><br>
&lt;textarea name="comment" cols="40" rows="5" value=""&gt;
&lt;/textarea&gt;<br><br>
&lt;input type="submit" name="submit" value="submit"&gt;
&lt;/form&gt;
<br>
<br>
<DIV ALIGN=CENTER>



&lt;/form&gt;
</DIV>


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