An open API service indexing awesome lists of open source software.

https://github.com/punitkatiyar/codeigniter-master-guide

PHP Framework Module For Developer
https://github.com/punitkatiyar/codeigniter-master-guide

codeigniter codeigniter4 php phpoop

Last synced: about 1 month ago
JSON representation

PHP Framework Module For Developer

Awesome Lists containing this project

README

        

# codeigniter3

## Basic Of PHP Core And Function And OOPS Concepts

> xampp
> php.ini
> htdocs

## Server Requirements

PHP version 7.3 or higher is required, with the following extensions installed:

- [intl](http://php.net/manual/en/intl.requirements.php)
- [libcurl](http://php.net/manual/en/curl.requirements.php) if you plan to use the HTTP\CURLRequest library
- [mbstring](http://php.net/manual/en/mbstring.installation.php)

Additionally, make sure that the following extensions are enabled in your PHP:

- json (enabled by default - don't turn it off)
- xml (enabled by default - don't turn it off)
- [mysqlnd](http://php.net/manual/en/mysqlnd.install.php)


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

## PHP CodeIgniter Framework Module For Developer

- ### Controler

$route['^(?!other|controller).*']='punit/$0';


defined('BASEPATH') OR exit('No direct script access allowed');
class Blog extends CI_Controller {
public function index(){
//print
}
}

- ### View
- ### Models


defined('BASEPATH') OR exit('No direct script access allowed');
class Dunit extends CI_Model {
public function index(){
echo "Welcome to Model";
}
}

- ### Helpers
- ### Libraries
- ### Database