PHP Classes

File: readme.md

Recommend this page to a friend!
  Classes of Frank Cauley   PHP CRUD generator   readme.md   Download  
File: readme.md
Role: Documentation
Content type: text/markdown
Description: Auxiliary data
Class: PHP CRUD generator
Generate classes to manipulate MySQL table records
Author: By
Last change:
Date: 11 years ago
Size: 939 bytes
 

Contents

Class file image Download

System Overview

When developing internet applications, a lot of time is spent maintaining the various MySql database tables. Gray and White wrote this CRUD system about three yeas ago and it has been helpful in many applications.

While developing the Virtual Cash Register system the Jtable Crud system was cloned from Github. That system had many features, including an attractive interface, that the Graynwhite system did not have . Conversely the Graynwhite crud system did generate the four crud files namely: Create, Retreive,Update and Delete.

Private settings

A file entitled crudPrivateSettings.php must be created with the following entries:

  • $this->companyName = "Your Company name ";
  • $this->dbname="the db name you are using";
  • $this->mysqlServer = "The server";
  • $this->mysqlUserName = "usernam";
  • $this->mysqlPassword = "password";
  • $this->mysqlDatabase = "data base name";