punitkatiyar / codeigniter-master-guide

PHP Framework Module For Developer

Home Page:https://punitkatiyar.github.io/codeigniter-master-guide/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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:

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
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

About

PHP Framework Module For Developer

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

License:MIT License


Languages

Language:PHP 95.7%Language:CSS 1.3%Language:HTML 1.1%Language:Hack 1.0%Language:JavaScript 0.9%