Skip to main content

Posts

Showing posts from November, 2020

Simple Codeigniter 4 CRUD Application in Hindi (Introduction & Installation) - Part 1

============================================== Simple Codeigniter 4 CRUD Application in Hindi ============================================== Server Requirements: ------------------------------------ PHP version 7.2 or newer is required, with the *intl* extension and *mbstring* extension installed. Currently supported databases are: ------------------------------------ MySQL (5.1+) via the MySQLi driver PostgreSQL via the Postgre driver SQLite3 via the SQLite3 driver https://codeigniter4.github.io/userguide/intro/requirements.html ------------------------------------- Installation ------------------------------------- 0) You need to install Composer first, if you already installed you can skip this step. 1) Open your working folder, if you are using xammpp you need to open htdocs directory. 2) Now open CMD and go to htdocs folder, and run the composer command given below. composer create-project codeigniter4/appstarter ci4_crud Note: make sure *intl* and *mbstring...