Tema: Web modular
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/12/2014, 11:52
Avatar de herzbazi
herzbazi
 
Fecha de Ingreso: febrero-2012
Mensajes: 612
Antigüedad: 12 años, 9 meses
Puntos: 36
Respuesta: Web modular

Cita:
Iniciado por sergiol Ver Mensaje
Hola estoy haciendo una web por modulos y me ha surgido un problema.
Puedo cargar el header y el footer pero el cuerpo de la pagina no se carga.

Código:
<html>
	<head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <title>Prueba</title>
            <link rel="stylesheet" type="text/css" href="styles.css">
	</head>
	<body>
            <?php
// Motrar todos los errores de PHP
            error_reporting(-1);

// No mostrar los errores de PHP
            error_reporting(0);

// Motrar todos los errores de PHP
            error_reporting(E_ALL);

// Motrar todos los errores de PHP
            ini_set('error_reporting', -1);
            ?>

                <?php include("modulos/header.php"); ?>
                <?php include ("modulos/default.php"); ?>
                <?php include("modulos/footer.php"); ?>
       </body>
</html>
He quitado el switch para ver si era ese el problema y sigue igual.
Gracias.

ya revise tu codigo y hasta lo puse en funcionamiento y no me sale ningun error.

revisalo


yo lo puse asi y me funciona


Código PHP:
Ver original
  1. <html>
  2.     <head>
  3.             <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4.             <title>Prueba</title>
  5.             <link rel="stylesheet" type="text/css" href="styles.css">
  6.     </head>
  7.     <body>
  8.         <?php include_once('modulos/header.php');?>
  9.         <?php include_once('modulos/default.php');?>
  10.         <?php include_once('modulos/footer.php');?>
  11.     </body>
  12. </html>
__________________
Enseña todo lo que sepas...
Aprende todo lo que puedas..