Codice PHP:<?php
class htmlgen{
public function __construct($in_pageTitle){
echo <<<EOHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="../template/andreas02.css" media="screen" title="andreas02 (screen)" />
<link rel="stylesheet" type="text/css" href="../template/print.css" media="print" />
<title>$in_pageTitle</title>
</head>
<body>
<div id="toptabs">
Site Network:
[url="index.html"]Personale[/url]<span class="hide"> | </span>
[url="index.html"]Società[/url]<span class="hide"> | </span>
[url="index.html"]Progetti[/url]<span class="hide"> | </span>
</p>
</div>
<div id="container">
<div id="logo">
<h1>[url="index.php"]Cristiano Roganti[/url]</h1>
</div>
<div id="navitabs">
<h2 class="hide">Site menu:</h2>
[url="index.php"]Home[/url]<span class="hide"> | </span>
[url="index.php?page=chisono"]Chi sono[/url]<span class="hide"> | </span>
</div>
<div id="desc">
<h2>Benvenuti</h2>
L architettura è </p>
<p class="right">[url="#"]Continua ...[/url]</p>
</div>
EOHTML;
}
public function openContent()
{
echo <<<EOCONTENT
<div id='main'>
EOCONTENT;
}
public function emitRightMenubar()
{
echo <<<EOMENUBAR
</div>
<div id='sidebar'>
<h3>Cerca</h3>
Do you want more information about this design Then you should check out these pages</p>
<h3>Ultimi lavori</h3>
[img]../template/images/test.jpg[/img]</p>
</div>
EOMENUBAR;
}
public function openFooter()
{
echo <<<EOFOOTER
<div id='footer'>
Copyright
</div>
EOFOOTER;
}
public function closeContent()
{
echo <<<EOCONTENT
</div>
EOCONTENT;
}
public function closePage()
{
echo <<<EOPAGE
</div>
</body>
</html>
EOPAGE;
}
}
?>

Rispondi quotando