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

Subscribe to our news:
Partners
Testimonials
Steven Langfield: "I wanted to drop you a mail to say how freaking AMAZING your software is. It will be the best £100 I have ever spent. I have still to read all your documentation to take full advantage but what you have created is truly amazing".
Tony Broadbent: "Such a great product! I have been struggling to hand craft pages which, with your PHP Generator, I created beautifully within 5 minutes of downloading it".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

setDetailedDescription

Allows to provide a page with a text description displayed in a modal window invoked with the question mark button on the right side of the title bar of the page. HTML tags are allowed. The code in the examples below should be placed into the OnPreparePage event handler.

 

Signature:

function setDetailedDescription($value)

 

Example 1:

To specify a detailed description "Top 100 Greatest Actors of All Time", place the following code in the event body:

 

$this->setDetailedDescription("Top 100 Greatest Actors of All Time");

 

 

Example 2:

In this example the description is loaded from an external file. In this case you can modify the text directly in the file without regenerating the application.

 

$description = file_get_contents('external_data/descriptions/actors.html');

$this->setDetailedDescription($description);



Prev Return to chapter overview Next