Creating the User Interface |
||||||||
For additional control over the look and feel, the ui_print_header() function uses a Cascading Style Sheet, in styles.css, to help define the visual attributes of HTML tags generated by the application. Each function that generates a Web page must call ui_print_header(), followed by the page content, and finally call ui_print_footer(). For example: <?php require('hr_ui.inc'); ui_print_header('Test'); echo "This is the content" ui_print_footer(date('Y-m-d H:i:s')); ?>
|