Ver Mensaje Individual
  #8 (permalink)  
Antiguo 18/02/2010, 12:13
Avatar de infiero
infiero
 
Fecha de Ingreso: marzo-2006
Mensajes: 38
Antigüedad: 18 años, 2 meses
Puntos: 3
Respuesta: Problema de codigo php

Cita:
Iniciado por hector2c Ver Mensaje
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
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Cam</title>
  6. <style type="text/css">
  7. <!--
  8. body {
  9.     margin-left: 0px;
  10.     margin-top: 0px;
  11.     margin-right: 0px;
  12.     margin-bottom: 0px;
  13.     background-color: #000000;
  14. }
  15. .Botonera
  16. {
  17.     font-size: 18px;
  18.     font-family: Arial, Helvetica, sans-serif;
  19.     color: #ffffff;
  20.     font-style: normal;
  21. }
  22. .Botonera a
  23. {
  24.     color: #ffffff;
  25.     text-decoration: none;
  26. }
  27. .Botonera a:hover
  28. {
  29.     color: #ffb700;
  30.     text-decoration: none;
  31.  
  32. -->
  33. </style>
  34. </head>
  35.  
  36. <body>
  37. <table width="981" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#1B1B1B" bgcolor="171717">
  38.             <td background="imagenes/bg.jpg"><table width="935" height="174" border="0" align="center" cellpadding="0" cellspacing="0" background="imagenes/botonera.jpg">
  39.  
  40.         <td width="935"><table width="771" height="30" border="0" cellpadding="0" cellspacing="0">
  41.             <td width="122" class="Botonera"><div align="center"><a href="index.php">INICIO</a></div></td>
  42.             <td width="187" class="Botonera"><div align="center">CAMARAS</div></td>
  43.             <td width="135" class="Botonera"><div align="center">SERVICIOS</div></td>
  44.             <td width="158" class="Botonera"><div align="center">DESCARGAS</div></td>
  45.             <td width="169" class="Botonera"><div align="center">CONTACTANOS</div></td>        
  46.         </table>
  47.     </table>
  48.      
  49. </table>
  50. </body>
  51. </html>