diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-21 16:11:13 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-21 16:11:13 +0100 |
commit | 78c3fa83531d4c1ca292f64e9383a9a4ff0f795b (patch) | |
tree | d2098d37be9c0b88a2565c2057723ef5cfe6b4f8 /user_guide/general | |
parent | 5b0a881d9251ce94114f0cc0eb6f080c163044aa (diff) |
assorted guide fixes and additions
Diffstat (limited to 'user_guide/general')
-rw-r--r-- | user_guide/general/controllers.html | 2 | ||||
-rw-r--r-- | user_guide/general/requirements.html | 4 | ||||
-rw-r--r-- | user_guide/general/views.html | 15 |
3 files changed, 10 insertions, 11 deletions
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index cd11eb1ac..d4f1489cb 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -375,6 +375,8 @@ is a list of reserved names. Do not name your controller functions any of these <li>CI_Loader</li>
<li>config</li>
<li>database</li>
+<li>dbutil</li>
+<li>dbforge</li>
<li>file</li>
<li>helper</li>
<li>helpers</li>
diff --git a/user_guide/general/requirements.html b/user_guide/general/requirements.html index 9acbd57d0..11a507679 100644 --- a/user_guide/general/requirements.html +++ b/user_guide/general/requirements.html @@ -58,8 +58,8 @@ Server Requirements <h1>Server Requirements</h1>
<ul>
- <li><a href="http://www.php.net/">PHP</a> version 4.3.2 or newer</li>
- <li>A Database. Supported databases are MySQL, MySQLi, MS SQL, Postgre, Oracle, SQLite, and ODBC</li>
+ <li><a href="http://www.php.net/">PHP</a> version 4.3.2 or newer.</li>
+ <li>A Database is required for most web appliction programming. Current supported databases are MySQL, MySQLi, MS SQL, Postgre, Oracle, SQLite, and ODBC.</li>
</ul>
diff --git a/user_guide/general/views.html b/user_guide/general/views.html index e41503f5f..851da92e8 100644 --- a/user_guide/general/views.html +++ b/user_guide/general/views.html @@ -162,7 +162,7 @@ $this->load->view('blogview', <var>$data</var>);</code> <p>Let's try it with your controller file. Open it add this code:</p>
<textarea class="textarea" style="width:100%" cols="50" rows="14">
-<?php
+<?php
class Blog extends Controller {
function index()
@@ -173,7 +173,7 @@ class Blog extends Controller { $this->load->view('blogview', $data);
}
}
-?>
+?>
</textarea>
@@ -193,9 +193,6 @@ class Blog extends Controller { <p>Then load the page at the URL you've been using and you should see the variables replaced.</p>
-<p><strong>Note:</strong> You'll notice that in the example above we are using PHP's alternative syntax. If you
-are not familiar with it you can read about it <a href="alternative_php.html">here</a>.</p>
-
<h2>Creating Loops</h2>
<p>The data array you pass to your view files is not limited to simple variables. You can
@@ -205,7 +202,7 @@ pull data from your database it will typically be in the form of a multi-dimensi <p>Here's a simple example. Add this to your controller:</p>
<textarea class="textarea" style="width:100%" cols="50" rows="17">
-<?php
+<?php
class Blog extends Controller {
function index()
@@ -218,7 +215,7 @@ class Blog extends Controller { $this->load->view('blogview', $data);
}
}
-?>
+?>
</textarea>
@@ -242,12 +239,12 @@ class Blog extends Controller { <?php endforeach;?>
</ul>
-
</body>
</html>
</textarea>
-
+<p><strong>Note:</strong> You'll notice that in the example above we are using PHP's alternative syntax. If you
+are not familiar with it you can read about it <a href="alternative_php.html">here</a>.</p>
</div>
|