Skip to content

My first git project, CRUD operations with CodeIgniter PHP Framework and ANGULAR JS. Under development

License

Notifications You must be signed in to change notification settings

vinodselvin/phpCRUD

Repository files navigation

phpCRUD (Under Development)

My first git project, CRUD operations with CodeIgniter PHP Framework and ANGULAR JS.
A library to create CRUD operations with nice views and a lot of useful features in just few lines of code.

Getting started

You can easily get the project running locally by following below installation steps.

Buy Me A Coffee

Installation

  1. Clone the repo in your pc
git clone https://github.com/vinodselvin/phpCRUD.git
  1. Change the Baseurl in phpCRUD/application/config/config.php,
$config['base_url'] = 'http://localhost/phpCRUD/';
  1. Change hostname, username, password and database in phpCRUD/application/config/database.php
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = '';
$db['default']['database'] = 'phpcrud';
  1. Select the table and its coloums for CRUD view and opertions in phpCRUD/application/controllers/crud_controller.php

    4.1. Load our library

    $this->load->library("php_crud"); 

    4.2. Select the table which you want to see CRUD View

    $this->php_crud->select_table('user_data'); 

    4.3. render_output() will generate awesome html view, for CRUD operation

    echo $this->php_crud->render_output(); 

Built With

  1. PHP CodeIgniter Framework
  2. AngularJS

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

If you have any questions, you can always get in touch with the Contributors of the Project.

Buy Me A Coffee

About

My first git project, CRUD operations with CodeIgniter PHP Framework and ANGULAR JS. Under development

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 6

Languages