PHP Classes

File: header.php

Recommend this page to a friend!
  Classes of Roberto Martinez   Code Help   header.php   Download  
File: header.php
Role: Auxiliary script
Content type: text/plain
Description: header for sample
Class: Code Help
Generate model, view and controller pattern code
Author: By
Last change:
Date: 19 years ago
Size: 561 bytes
 

Contents

Class file image Download
<?php
$COLOR
='#A0D0F0';

include (
'db.php');

echo
'<html>
    <head>
    <title>Title</title>
    <LINK REL="StyleSheet" HREF="style.css" TYPE="text/css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    <table border="0" cellspacing="0" width="770" align="center">
    <tr>
    <td align="center" bgcolor="'
.$COLOR.'" colspan="2"><font class="title">
    <BR>Header<BR><BR></font></td></tr>'
;
echo
'<tr><td>';
echo
'</tr></table>';

echo
'<table border="0" cellspacing="0" width="770" align="center"><tr><td>';

?>