summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authorIban Eguia <admin@razican.com>2011-08-26 14:34:38 +0200
committerIban Eguia <admin@razican.com>2011-08-26 14:34:38 +0200
commitd8f002c6c92ed8395331b69ea77c4e5a83bfd83c (patch)
treecc704e5eedefc50fa3d420d190c813c85afbf26c /user_guide
parentb4009e2fc52c3f1c9f58a9461a7c6cbb0a934898 (diff)
Removed some documentation for PHP 4 users in the active record documentation.
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/database/active_record.html7
1 files changed, 2 insertions, 5 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 92d9614d5..0f09e78c3 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -79,9 +79,6 @@ is generated by each database adapter. It also allows for safer queries, since
<p>The following functions allow you to build SQL <strong>SELECT</strong> statements.</p>
-<p><strong>Note: If you are using PHP 5 you can use method chaining for more compact syntax. This is described at the end of the page.</strong></p>
-
-
<h2>$this->db->get();</h2>
<p>Runs the selection query and returns the result. Can be used by itself to retrieve all records from a table:</p>
@@ -532,7 +529,7 @@ $this->db->insert('mytable', $object);
<p>Generates an insert string based on the data you supply, and runs the query. You can either pass an
<strong>array</strong> or an <strong>object</strong> to the function. Here is an example using an array:</p>
-<code>
+<code>
$data = array(<br/>
&nbsp;&nbsp;&nbsp;array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' => 'My title' ,<br />
@@ -544,7 +541,7 @@ $data = array(<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name' => 'Another Name' ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'date' => 'Another date'<br />
&nbsp;&nbsp;&nbsp;)<br/>
-);<br />
+);<br />
<br />
$this->db->update_batch('mytable', $data);
<br /><br />