PHP Classes

File: HtmlPage.php

Recommend this page to a friend!
  Classes of Mario Carrocera   HTML Include Images and Text using PHP on Time   HtmlPage.php   Download  
File: HtmlPage.php
Role: Example script
Content type: text/plain
Description: Example script
Class: HTML Include Images and Text using PHP on Time
Store and retrieve values for HTML for images
Author: By
Last change:
Date: 2 years ago
Size: 377 bytes
 

Contents

Class file image Download
<?php
//ini_set('display_errors', true);
//error_reporting(E_ERROR | E_PARSE | E_NOTICE | E_WARNING);


include_once('HtmlClass.php');
$html = new html();
$html->SetPage('page');
$html->SetMeta('screen');
$html->SetGoogle('letters');
$html->SetCss('MainCss');
$html->SetLayOut('Layout');
?>

<!DOCTYPE html>
<html>
    <?php $html->Getheader();
         
$html->GetLayout();?>
</html>