Welcome Guest, Not a member yet? Register   Sign In
Tutorial - Static Pages
#7

[eluser]CroNiX[/eluser]
How many pages do you have like this? If not too many, you can list them all in a single route. There are many ways to do this.

Just one page...
Code:
$route['about'] = 'pages/view/$1';

Multiple pages...
Code:
$route['(about|some-other-page)'] = 'pages/view/$1';

Code:
class Pages extends CI_Controller {

  public function view($url_title = '')
  {
    // page name is sent as $url_title automatically
    if ($url_title !== '')
    {
      //check to see if page exists in database...

      //if so display it, if not show_404();
    }
  }
}


Messages In This Thread
Tutorial - Static Pages - by El Forum - 01-24-2012, 08:18 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 11:50 AM
Tutorial - Static Pages - by El Forum - 01-25-2012, 03:17 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 03:29 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 04:55 PM
Tutorial - Static Pages - by El Forum - 02-20-2012, 10:56 AM
Tutorial - Static Pages - by El Forum - 02-20-2012, 11:40 AM
Tutorial - Static Pages - by El Forum - 02-20-2012, 02:24 PM
Tutorial - Static Pages - by El Forum - 02-20-2012, 09:48 PM
Tutorial - Static Pages - by El Forum - 03-27-2012, 10:11 AM
Tutorial - Static Pages - by El Forum - 07-19-2012, 08:39 PM
Tutorial - Static Pages - by El Forum - 03-27-2013, 02:22 PM
Tutorial - Static Pages - by El Forum - 06-27-2013, 05:33 AM
Tutorial - Static Pages - by El Forum - 07-05-2013, 02:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB