From b75734ea2a368a18ca8dc71155c973a7e7e9aa2a Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Wed, 4 Feb 2009 12:53:48 +0000 Subject: grammer ... um, grammar... fix. --- user_guide/database/active_record.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/database/active_record.html') diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 871c59a5d..23f5ce545 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -662,7 +662,7 @@ the data to the second parameter of the function:

// Produces:
// DELETE FROM mytable
// WHERE id = $id

-

An array of table names can be passed into delete() if you would like to delete data from more then 1 table.

+

An array of table names can be passed into delete() if you would like to delete data from more than 1 table.

$tables = array('table1', 'table2', 'table3');
$this->db->where('id', '5');
$this->db->delete($tables);

-- cgit v1.2.3-24-g4f1b