Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Simon Greener: "A lot of work went in to designing our application database. PHP Generator allowed us to build a fully functional, professional looking, and functionally powerful web application from that database. It has freed us from worrying about low level code, enabling us to focus on the business requirements of the customer. The support provided is excellent with staff quickly producing answers to questions ranging from newbie to simple or complex. I highly recommend the product".
Olivier Auverlot: "At my work (a universitary computer research laboratory), I'm alone to create all applications and databases. I don't know how I could do all the work without it. It's really a very productive software. I can focus on the database schemas and create quickly the user applications with a minimal amount of code to maintain".

More

Add your opinion

PostgreSQL PHP Generator online Help

Prev Return to chapter overview Next

OnBeforePageExecute

This event occurs before other events are declared and allow to create global objects, declare functions, and include third-party libraries. This helps you to define a snapshot of PHP code that will be included into all the pages.

 

Signature:

function OnBeforePageExecute()

 

Example:

In our Schema Browser demo project all the code implementing database filter, formatting and highlighting SQL code we entered in the schema_browser_utlis.php file. The following code is used to include it to into all application web pages.

 

include_once 'schema_browser_utils.php';

 



Prev Return to chapter overview Next