Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/05/2011, 18:21
Avatar de s00rk
s00rk
 
Fecha de Ingreso: octubre-2010
Ubicación: Mexico
Mensajes: 238
Antigüedad: 14 años, 2 meses
Puntos: 48
Respuesta: Intentando hacer una web modular =(

Código PHP:
Ver original
  1. <?php
  2.  
  3. if( isset($_GET['s']) && empty($_GET['s']) )
  4. {
  5.     echo '
  6.  
  7.        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8.        <html xmlns="http://www.w3.org/1999/xhtml">
  9.        <head>
  10.        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  11.        <meta name="robots" conte="noindex,nofollow" />
  12.        <title>Página no encontrada</title>
  13.        </head>
  14.  
  15.        <body>Error 404: Página no encontrada
  16.        </body>
  17.        </html>  
  18.      
  19.          ';
  20.           die();
  21. }
  22.  
  23. $URL       = $_GET['s'];
  24. $ext      = ".html";
  25. $Pagina  = $URL.$ext;
  26.  
  27. if ($URL == "xxxxxxxxxxxxxxxxxx")
  28. {  
  29.    $Descripcion ='xxxxxxxxxxxxxxxxxxxxxxxx';
  30.    $Titulo    ='xxxxxxxxxxxxxxxxxxx';
  31.    $Keyw    ='xxxxxxxxxxxxx';
  32. }elseif ($URL == "xxxxxxxxxxxxxxxxxxxxxxx"){
  33.  
  34.    $Descripcion ='xxxxxxxxxxxxxxxxxxxxxxxx';
  35.    $Titulo    ='xxxxxxxxxxxxxxxxxxx';
  36.    $Keyw    ='xxxxxxxxxxxxx';
  37.    
  38.  }
  39.  
  40. // y asi con todas mis páginas
  41.  
  42.    $Descripcion = "xxxx";
  43.    $Titulo    ='xxxx';
  44.    $Keyw    ='xxxxx';
  45.    $Titulo2 = "xxxxxxx";
  46.    $Pagina    ="Indice.html";
  47.    include "index.html";
  48.  
  49.  
  50. ?>