PHP Classes

PHP CRUD 360 Form Generator: Generate forms for administration panels

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 393 All time: 6,632 This week: 66Up
Version License PHP version Categories
crud360 1.0Custom (specified...5HTML, PHP 5, Databases, Tools
Description 

Author

This package can generate CRUD forms for administration panels.

It can take the definition of a form and the fields that it contains and generates the necessary HTML and JavaScript to render the forms and validate the fields inputs according to given rules.

The package can process the forms for performing the operations to create, read, update and delete table records stored in a database accessed using the PDO extension.

Picture of Muhammad Usman
Name: Muhammad Usman <contact>
Classes: 1 package by
Country: Pakistan Pakistan

 

Example

<?php
// EASY SETUP
// Set your database name, database user, database password and database name in crud360/includes/class.config.php
include_once("crud360/includes/class.crud360.php");
$obj_table = new Crud360("table");
//Call process method to process all get/post request (live/ajax),
//!!!!!!!!You must call it before any html is rendered!!!!!!!!!!!
Crud360::process([$obj_table]);
//Begin including html (css, js, head section)
include_once("crud360/inc/header.php");
?>
<div class="container">
<?php
//Use defaultDivs method to place informatory message divs, wherever you will place this call, it will load messages there.
Crud360::defaultDivs();
$obj_table->magic();
?>
</div>
<?php include_once("crud360/inc/footer.php"); ?>
<?php Crud360
::javascript([$obj_table]); ?>


  Files folder image Files (133)  
File Role Description
Files folder imagecrud360 (6 directories)
Files folder imageinstall (4 files)
Accessible without login Plain text file crud360_example1.php Example Example script
Accessible without login Plain text file crud360_example2.php Example Example script
Accessible without login Plain text file crud360_example3.php Example Example script
Accessible without login Plain text file crud360_example4.php Example Example script
Accessible without login Plain text file crud360_example5.php Example Example script
Accessible without login Plain text file crud360_example6.php Example Example script
Accessible without login Plain text file crud360_example7.php Example Example script
Accessible without login Plain text file crud360_example8.php Example Example script
Accessible without login Plain text file crud360_example9.php Example Example script
Accessible without login Plain text file getting_started.php Aux. Auxiliary script
Accessible without login Plain text file index.php Aux. Auxiliary script
Accessible without login Plain text file LICENSE.MD Lic. License text
Accessible without login Plain text file lincense.php Aux. Auxiliary script
Accessible without login Plain text file README.MD Doc. Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:393
This week:0
All time:6,632
This week:66Up