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
- Host: GitHub
- URL: https://github.com/punitkatiyar/codeigniter-master-guide
- Owner: punitkatiyar
- License: mit
- Created: 2021-12-18T12:33:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-28T09:25:33.000Z (over 1 year ago)
- Last Synced: 2023-10-28T10:23:35.661Z (over 1 year ago)
- Topics: codeigniter, codeigniter4, php, phpoop
- Language: PHP
- Homepage: https://punitkatiyar.github.io/codeigniter-master-guide/
- Size: 140 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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(){
}
}- ### 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