17/05/2010, 13:27
|
| | | Fecha de Ingreso: agosto-2009 Ubicación: Sant Feliu de Llobregat
Mensajes: 955
Antigüedad: 15 años, 4 meses Puntos: 66 | |
Respuesta: Includes en Web Modular! Ayuda tienes que estructurar el index con las diferentes secciones donde quieres incluir los modulos.
<!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>Documento sin título</title>
</head>
<body>
<div id="cabecera"><?php include('cabecera.php'); ?></div>
<div id="menu"><?php include('menu.php'); ?></div>
etc...........................................
</body>
</html> |