Category Archives: Codeigniter

http:/www.bsourcecode.com/codeigniter/codeigniter-url-helper/

This helper is loaded using the following code: $this->load->helper(‘url’); URL Helper See the below table, you will get the list of URL helper function of codeigniter with the output url like anchor link, popup window etc URL Helper Function Output URL site_url () http://127.0.0.1/codeigniter/first/index.php site_url (‘blog’) http://127.0.0.1/codeigniter/first/index.php/blog site_url (‘blog/id/123’) http://127.0.0.1/codeigniter/first/index.php/blog/id/123 $segments = array(‘blog’, ‘post’, ‘123’); […]

CodeIgniter URL Security And URL Routes

CodeIgniter URI Security How To Routes CodeIgniter URI Security CodeIgniter is fairly restrictive regarding which characters it allows in your URI strings in order to help minimize the possibility that malicious data can be passed to your application. URIs may only contain the following: Alpha-numeric text Tilde: ~ Period: . Colon: : Underscore: _ Dash: […]

What is CodeIgniter?

Welcome to CodeIgniter Who is CodeIgniter For? CodeIgniter at a Glance CodeIgniter Server And Database Support CodeIgniter Features Application Flow Chart Model-View-Controller Goal Of CodeIgniter Welcome to CodeIgniter CodeIgniter is an Application Development Framework – a toolkit – for people who build web sites using PHP. Its goal to enable you to develop projects much […]