From ce66d155eca7d447bdcc6feb47c17647ac754c35 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 4 Mar 2008 20:55:55 +0000 Subject: validation error fixes --- user_guide/general/urls.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'user_guide/general/urls.html') diff --git a/user_guide/general/urls.html b/user_guide/general/urls.html index f83930457..823610f7e 100644 --- a/user_guide/general/urls.html +++ b/user_guide/general/urls.html @@ -74,7 +74,7 @@ approach to URLs that is synonymous with dynamic systems, CodeIgniter uses a
  • The first segment represents the controller class that should be invoked.
  • The second segment represents the class function, or method, that should be called.
  • -
  • The third, and any additional segments, represent the ID and any variables that will be passed to the controller.

    +
  • The third, and any additional segments, represent the ID and any variables that will be passed to the controller.
  • The URI Class and the URL Helper @@ -116,7 +116,7 @@ by CodeIgniter. For example, if a URL is this:

    In some cases you might prefer to use query strings URLs:

    -index.php?c=products&m=view&id=345 +index.php?c=products&m=view&id=345

    CodeIgniter optionally supports this capability, which can be enabled in your application/config.php file. If you open your config file you'll see these items:

    @@ -128,7 +128,7 @@ $config['function_trigger'] = 'm';

    If you change "enable_query_strings" to TRUE this feature will become active. Your controllers and functions will then be accessible using the "trigger" words you've set to invoke your controllers and methods:

    -index.php?c=controller&m=method +index.php?c=controller&m=method

    Please note: If you are using query strings you will have to build your own URLs, rather than utilizing the URL helpers (and other helpers that generate URLs, like some of the form helpers) as these are designed to work with -- cgit v1.2.3-24-g4f1b