Solucio cap peus php

De wikiserver
Dreceres ràpides: navegació, cerca

Fitxer index.php:

<?php
 
/*
Fitxer index.php
 
Fitxer d'inici
 
*/
 
//Arguments per la capçalera header. Aquestes variables seran visibles
//des de cap.php
$TITOL = "inici";
$ESTIL = "estil.css";
 
include("cap.php");
?>
 
<!-- Formulari d'entrada -->
<div class="login">
 
<FORM METHOD=POST ACTION="access.php">
 
<table border="0">
<tr>
<td>Nom</td>
<td>
 
<INPUT TYPE=TEXT NAME="nom" VALUE="" SIZE=20 MAXLENGTH=60>
 
 
</td>
</tr>
 
<tr>
<td>Passwd</td>
<td>
<INPUT TYPE=PASSWORD NAME="passwd" VALUE="" SIZE=20 MAXLENGTH=60>
</td>
</tr>
 
 
<tr>
<td></td>
<td><INPUT TYPE=SUBMIT VALUE="Enviar">
<INPUT TYPE=RESET VALUE="Borrar"></td>
</tr>
 
</table>
 
 
</FORM>
 
</div>
 
<?php
include("peu.php");
 
?>


Fitxer cap.php:

<?php
 
/*
Fitxer cap.php
 
Fitxer de capçalera de totes les pàgines del web
 
Arguments:
- $TITOL: títol de la pàgina
- $ESTIL: nom del CSS per carregar
*/
 
?>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<title>
 
<?php
 
/////////////////////////
// TITOL DE LA PAGINA //
/////////////////////////
if(isset($TITOL))
printf("%s", $TITOL);
 
else
printf("Exemple");
?>
 
</title>
 
<?php
/////////////////
// Estil (CSS) //
/////////////////
if(isset($ESTIL))
printf('<link rel="stylesheet" type="text/css" href="%s" />', $ESTIL);
else
printf('<link rel="stylesheet" type="text/css" href="estil.css" />');
 
?>
 
</head>
 
<body>
 
 
 
<!-- Banner de la pàgina -->
<div class="header">
 
<p align="center">
<img src="./pics/banner.gif" height="100px"/>
</p>
</div>
 
<div class="principal">


Fitxer peu.php

<?php
 
/*
Fitxer peu.php
 
Fitxer de peu de totes les pàgines del web
 
Arguments: -
 
*/
 
?>
 
</div>
 
</body>
</html>