Ciao a tutti, volevo fare 1 sito in PHP...
volevo usare le funzioni ($i();) ma non ho trovato niente e dopo come se non bastasse non funziona:
http://www.simsblog.netsons.org/pagina.php
config.php
Codice PHP:
<?php
function header() { ###############Inizio HEADER###############
?>
<!--- SimTimes --->
<!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" lang="en" xml:lang="en">
<head>
<title>SimTimes - Il Giornale dei Sims...</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Davide@IdeaSims" />
<meta name="description" content="Il Giornale dei Sims." />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="header">
<div class="header">Il Giornale dei Sims.</div>SimTimes
</div>
<div id="menu">
<div class="menu"><a href="index.php">HomePage</a></div>
<div class="menu"><a href="index.php?id=articoli">Articoli</a></div>
<div class="menu"><a href="index.php?id=interviste">Interviste</a></div>
<div class="menu"><a href="index.php?id=staff">Staff</a></div>
<div class="menu"><a href="index.php?id=links">Links</a></div>
</div>
<div id="body">
<div class="submenu"><b>Cercasi Staff</b>: Se sei Interessato al SimTimes non esitare a <a href="mailto:simtimes@netsons.org">Contattarci!</a></div>
<div class="spacer"></div>
<div class="content">
<?php
}###############Fine HEADER###############
#################################################################################################################################################
function footer() { ###############Inizio FOOTER###############
?>
</div>
<div class="spacer"></div>
<div id="footer">
<div class="footer">© <?php echo date("Y"); ?> <a href="http://www.simtimes.netsons.org">SimTimes</a>.<br />
<center>www.ideasims.netsons.org</center></div>
</div>
</body>
</html>
<!--- SimTimes --->
<?php
} ###############Fine FOOTER###############
?>
########################
pagina.php
Codice PHP:
<?php
include("/var/www/netsons.org/simsblog/config.php");
echo header();
?>
<h1>Prova</h1>
<h2>Prova</h2>
<p>TESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTO<br />
TESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTO<br />
TESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTOTESTO</p>
<?php
echo footer();
?>
In modo tale da non aggiornare tutto il sito ma solo quelle pagine..
Volevo qualcosa di più semplice..
Ma da pagina bianca..perchè?
Grazie.Ciao Davide :)