changed some code in examples from <?php to <?php in the event that a local install tries to interpret the example as code
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html
index f11d092..c13f218 100644
--- a/user_guide/general/controllers.html
+++ b/user_guide/general/controllers.html
@@ -95,7 +95,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="10">
-<?php
+<?php
class Blog extends Controller {
function index()
@@ -103,7 +103,7 @@
echo 'Hello World!';
}
}
-?>
+?>
</textarea>
@@ -150,7 +150,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="15">
-<?php
+<?php
class Blog extends Controller {
function index()
@@ -163,7 +163,7 @@
echo 'Look at this!';
}
}
-?>
+?>
</textarea>
<p>Now load the following URL to see the <dfn>comment</dfn> function:</p>
diff --git a/user_guide/general/views.html b/user_guide/general/views.html
index a8c3d60..120e7bb 100644
--- a/user_guide/general/views.html
+++ b/user_guide/general/views.html
@@ -97,7 +97,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="10">
-<?php
+<?php
class Blog extends Controller {
function index()
@@ -105,7 +105,7 @@
$this->load->view('blogview');
}
}
-?>
+?>
</textarea>