Welcome Guest, Not a member yet? Register   Sign In
Form that Submits to a Database
#19

[eluser]textnotspeech[/eluser]
Here's an adaptation of the user guide code assuming you have form data posted with these input names

Code:
$data = array(
               'title' => $_POST['title'] ,
               'name' => $_POST['name'] ,
               'date' => $_POST['date']
            );

$this->db->insert('mytable', $data);

// Produces: INSERT INTO mytable (title, name, date) VALUES ('My title', 'My name', 'My date')


Messages In This Thread
Form that Submits to a Database - by El Forum - 09-29-2008, 12:56 AM
Form that Submits to a Database - by El Forum - 09-29-2008, 02:12 AM
Form that Submits to a Database - by El Forum - 09-29-2008, 12:07 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 12:24 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 02:47 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 02:55 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 02:58 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 03:00 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 03:02 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 06:35 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 07:14 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 10:36 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 10:54 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:06 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:16 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:16 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:17 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:21 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:22 PM
Form that Submits to a Database - by El Forum - 09-29-2008, 11:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB