QuickConnectPHP Creation Quick Guide
Application Creation Steps
- If you are using Oracle, change the loginBR function to use the OracleDataAccessObject (still in pre-release version)
- Change the user name, password, and database URL to reflect your actual database
- If you are using MySQL, change the database schema to reflect your schema to use
Application Implementation Steps
Do once:
change the name of QuickConnect.php to reflect the name of your application.
For each new piece of functionality:
- Write any ValCF's, validation control functions, needed for this new command
- Write zero or more DCF's, data control functions, for the desired new functionality in the functions file
- Write one or more VCF's, view control functions, to format the response to the client. This can be text, HTML, XML, JSON, etc.
depending on what the client application expects
- Map the command that will be passed on the http request to the ValCF's, DCF's, and VCF's. Do this in the mappings file.