From cef2106de1c7044072499aa5d4e529a01c3db8a4 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 30 Oct 2006 17:13:13 +0000 Subject: --- user_guide/general/alternative_php.html | 10 ++- user_guide/general/caching.html | 2 +- user_guide/general/changelog.html | 2 +- user_guide/general/managing_apps.html | 139 -------------------------------- user_guide/general/profiling.html | 2 +- 5 files changed, 10 insertions(+), 145 deletions(-) delete mode 100644 user_guide/general/managing_apps.html (limited to 'user_guide/general') diff --git a/user_guide/general/alternative_php.html b/user_guide/general/alternative_php.html index 7e8de7c0b..564dc3238 100644 --- a/user_guide/general/alternative_php.html +++ b/user_guide/general/alternative_php.html @@ -67,6 +67,12 @@ in your View files. To minimize the PHP code in these files, and to make it eas syntax for control structures and echo statements. If you are not familiar with this syntax, it allows you to eliminate the braces from your code, and eliminate "echo" statements.

+

Note: If you find that the syntax described in this page does not work on your server it might +be that "short tags" are disabled in your PHP ini file. Code Igniter will optionally rewrite short tags on-the-fly, +allowing you to use that syntax even if your server doesn't support it. This feature can be enabled in your +config/config.php file.

+ +

Alternative Echos

Normally to echo, or print out a variable you would do this:

@@ -77,8 +83,6 @@ and eliminate "echo" statements.

<?=$variable?> -

Note: If you find that the syntax described in this page does not work on your server it might -be that "short tags" are disabled in your PHP ini file.

Alternative Control Structures

@@ -129,7 +133,7 @@ important!

diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html index 81235cae0..9058f03b8 100644 --- a/user_guide/general/changelog.html +++ b/user_guide/general/changelog.html @@ -304,7 +304,7 @@ all controller methods are prefixed with _ci to avoid controller coll