To remove 'index.php' from CodeIgniter URL, we need to make some changes in the configuration file.
Step 1
open application/config/config.php
search for the line
$config['index_page'] = "index.php";
and remove 'index.php' from that line.
($config['index_page'] = "";)
Step 2
Create a new file inside Codeigniter folder and save it as '.htaccess'
paste the following code...
Thursday, July 14, 2016
Thursday, July 7, 2016
Codeigniter tutorial 5
I have posted tutorials on, working with Controller and View files in the MVC Pattern Using Codeigniter.
Now I go through with Model.
In the application folder, we have a sub-folder model
Create a new file new_model.php in model folder.
<?php
Class New_model extends CI_Model{
public...