Add Notes on Web Page

--

PHPMaker Tutorial Series

Hi All, Welcome To PHPMaker Tutorial Series

PHPMaker generates web pages based on the tables in our database. Sometimes we need to add notes about the table or the information displayed on the web page.

Picture 1. Notes for Table

Here the steps to display the notes on the web page :

  1. Click The Table We Want to Add The Notes
Picture 2. Select The Table

2. Choose Server Code > List Page > Page Data Rendering

Picture 3. Navigate to Page_DataRendering

3. Copy Paste This Code on Page_DataRendering

/ Page Data Rendering event
function Page_DataRendering(&$header)
{
// Example:
//$header = "your header";
$header = "<your notes>";
}

4. The Result

That’s All, quite easy, right?

Happy learning!

--

--

Paramita Daniswari
Paramita Daniswari

Written by Paramita Daniswari

Programming Enthusiast - The written words yearn for timeless wings

No responses yet