Tag Archives: CodeIgniter Basic

CodeIgniter Installation Instructions

Download CodeIgniter CodeIgniter Installation Steps Normal Directory Structure Increase Security For Application Folder Download CodeIgniter Download the codeigniter latest version using the below urls Codeigniter Site Github CodeIgniter Installation Steps 1.Unzip the package. 2.Upload the CodeIgniter folders and files to your server. Normally the index.php file will be at your root. 3.Open the application/config/config.php file […]

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: […]