Cita:
Iniciado por hector2c jajajaja,
una clasicaZa, jajajaja, no podemos negar que a tooodos cuando empezamos hemos pasado por este error clasicaZo, jajajaja...
puedes tener esto:
pagina.php
Código PHP:
<?
$variable = "hola";
$variable= "12";
if ($variable==12){
header('Location: index.php');
exit;
}
?>
no da ningun problema, por que arriba no hay contenido impreso, html o php... pero!!!
pagina.php
Código PHP:
<h1>El título</h1>
<?
$variable = "hola";
$variable= "12";
echo $variable;
if ($variable==12){
header('Location: index.php');
exit;
}
?>
pos, aqui si te genera error, por que, tienes impreso la etiqueta h1, e imprimis código con php...
cuando vas a realizar un header, SIEMPRE debe estar limpia la parte de arriba... algunos usan javascript para hacer esa redireccion... suerte, nus vemos...
Gracias a tu forma de explicarlo, no tube problemas en entenderlo
pero probe de muchas formas y no logre insertar el codigo correctamente
Código PHP:
Ver original<!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>Cam</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #000000;
}
.Botonera
{
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
font-style: normal;
}
.Botonera a
{
color: #ffffff;
text-decoration: none;
}
.Botonera a:hover
{
color: #ffb700;
text-decoration: none;
-->
</style>
</head>
<body>
<table width="981" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#1B1B1B" bgcolor="171717">
<td background="imagenes/bg.jpg"><table width="935" height="174" border="0" align="center" cellpadding="0" cellspacing="0" background="imagenes/botonera.jpg">
<td width="935"><table width="771" height="30" border="0" cellpadding="0" cellspacing="0">
<td width="122" class="Botonera"><div align="center"><a href="index.php">INICIO</a></div></td>
<td width="187" class="Botonera"><div align="center">CAMARAS</div></td>
<td width="135" class="Botonera"><div align="center">SERVICIOS</div></td>
<td width="158" class="Botonera"><div align="center">DESCARGAS</div></td>
<td width="169" class="Botonera"><div align="center">CONTACTANOS</div></td>
</table>
</table>
</table>
</body>
</html>