home *** CD-ROM | disk | FTP | other *** search
/ Incas / Incas.iso / Kimera / karisma / kimera / republicadominicana / Topicos.php < prev    next >
PHP Script  |  2005-02-09  |  890b  |  30 lines

  1. <?php 
  2.  session_start();
  3.  require("FuncionesHistoria.php");
  4.  
  5.  $topico=$_GET['topico'];
  6.  $indice=$_GET['indice'];
  7.  if ($topico=="")
  8.  {
  9.    $topico="Presidentes_0.1.";
  10.    $indice="si";
  11.  }  
  12.  $Mensaje=$_GET['Mensaje'];
  13. ?>
  14.  
  15. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  16. <html>
  17. <head>
  18. <title>Untitled Document</title>
  19. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  20. </head>
  21. <frameset rows="47,500" cols="*" framespacing="0" frameborder="NO" border="0">
  22.   <frame src="titulos.php?topico=<?php echo($topico);?>&indice=<?php echo($indice);?>" name="topFrame" scrolling="NO" noresize marginwidth="0" marginheight="0" >
  23.   <frame src="contenido.php?topico=<?php echo($topico);?>&indice=<?php echo($indice);?>&Mensaje=<?php echo("$Mensaje");?>" name="mainFrame">
  24. </frameset>
  25. <noframes>
  26. <body>
  27. </body>
  28. </noframes>
  29. </html>
  30.