http://tratoweb.webcindario.com/inde...ion=horoscopos
el codigo de mi archivo de error es este
Código PHP:
<html>
<head>
<title>horoscopos</title>
<style type="text/css">
<!--
.Estilo1 {
font-size: 24px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<p align="center" class="Estilo1">HOROSCOPOS</p>
<p align="center" class="Estilo1"><img src="huevos/mini_horoscopo.gif" width="100" height="73"></p>
<p align="center"><a href="index.php?enlace=huevos&seccion=horoscopos&parte=1">PARTE 1</a> | <a href="index.php?enlace=huevos&seccion=horoscopos&parte=2">PARTE2</a> </p>
<?PHP
$parte=$_GET["parte"];
switch($parte)
{
case 1:
include("huevos/horoscopo/parte1.html");
break;
case 2
include("huevos/horoscopo/parte2.html");
break;
}
?>
</body>
</html>