PHP Classes

File: fwphp/glomodul/z_examples/OOP/page_view.php

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   fwphp/glomodul/z_examples/OOP/page_view.php   Download  
File: fwphp/glomodul/z_examples/OOP/page_view.php
Role: Example script
Content type: text/plain
Description: Example script
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of fwphp/glomodul/z_examples/OOP/page_view.php
Date: 1 year ago
Size: 416 bytes
 

Contents

Class file image Download
<?php
//$page_obj->view_script = basename(__FILE__);
ob_start(); ?>
<!-- page content
<section>
-->
<div class="container">
 <h2>Welcome to the home of OOP Consulting.</h2>
 <p>Please take some time to get to know us.</p>
 <p>We specialize in serving your business needs and hope to hear from you soon.</p>
 <p>Above text is in <?=__FILE__?></p>
</div>
<?php
$page_obj
->content = ob_get_contents(); ob_end_clean();