Codeigniter is rapid development php web framework used to develop fully featured dynamic websites. It is loosely based on MVC (Model, View, Controller) Pattern and famous for it speed in comparison of other PHP Frameworks. Here we will discuss about the topic “How to remove index.php file from url in codeigniter ?”. Why we want to remove index.php from Codeigniter…
Category: PHP
Database Backup with PHP and MYSQL
What is Database backup ?? Database backup is a process of creating the duplicate copy of your database with architecture and it’s stored data. A backup is a duplicate copy of your database that is use to reconstruct or restore your database structure and data. Basically database is a structured form of data that is stored into a computer. it…
How to update composer.phar ?
Sometime when we create a project or install a package to our existing project ,face this warning. It is a warning statement from composer to user that your composer is not up to date. Warning: This development build of composer is over 60 days old. It is recommended to update it by running “C:\ProgramData\ComposerSetup\bin\composer.phar self-update” to get the latest version.…