Posts

Showing posts from November, 2015

Change Date Format

<?php $date = "18/11/2015"; $change_date = str_replace('/', '-', $date); echo $result_date = date('Y-m-d', strtotime($change_date)); ?> //output: 2015-11-18

Remove index.php from config.php file using htaccess in Codeigniter

Image
- Make  .htaccess file and copy below code. - Put .htaccess file to codeigniter or your project folder. - For Ex.:   <IfModule mod_rewrite.c>   RewriteEngine On   #RewriteBase /   RewriteCond %{REQUEST_FILENAME} !-f   RewriteRule ^ index.php [QSA,L] </IfModule>