No se puede cambiar el cabezal si ya lo has definido previamente, tienes 2 opciones:
1.- Mover el html más abajo asi:
Código PHP:
Ver original<?php
//Conexi贸n con el servidor
/********* CONECTA CON LA BASE DE DATOS **************** */
/* ****************************************************** */
//ejecutamos la consulta
$SQL="Select*From DATOSFISCALES WHERE RFC='".$_POST['rfc']."'";
// verificamos que no haya error
if (! $result){
header('Location: datos.php'); }else { ?>
<title> datos</title>
<form method="post" action="actualia.php">
<table width="200" border="0" align="center" cellspacing="0">
<tr>
<td height="148"><img src="log[1].jpg" width="150" height="133" /></td>
<td><img src="CABESERA.png" width="801" height="144" /></td>
</tr>
</table> <?php echo "<table width='600' border='0' align='center'>
<tr><td><h3><font color='red'>SI SUS DATOS SON...
2.- Hacerlo con javascript así:
Código PHP:
Ver originalif (! $result){
echo "<script>document.location.href='datos.php';</script>";
}else {
Espero te sirva y no haberme equivocado XD