Saludos tengo en problema con este código necesito que en caso de que en la consulta no encuentre el dato los mande a otra agina lo he intentado colocando un header('Location: datos.php'); pero al parecer ignora esa instrucción gracias
Código PHP:
Ver original<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
//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 {
echo "<table width='600' border='0' align='center'>
<tr><td><h3><font color='red'>SI SUS DATOS SON INCORRECTOS MODIFIQUE AHORA </td></h3></tr></font>
</table>
</tr>";
echo "<table width='150' border='0' align='left'>
<tr>
</td>
<tr>
<tr><td>RFC</td> </tr>
<tr><td>NOMBRE</td> </tr>
<tr><td>CALLE</td> </tr>
<tr><td>NO EXTERIOR</td> </tr>
<tr><td>NO INTERIOR</td> </tr>
<tr><td>CODIGO POSTAL</td> </tr>
<tr><td>COLONIA</td> </tr>
<tr><td>POBLACION</td> </tr>
<tr><td>PAIS</td> </tr>
<tr><td>E-mail</td> </tr>
</table>
</tr>";
//obtenemos los datos resultado de la consulta
{
echo "<input type=text name=RFC size=50 value=".$row[1]."><br>";
echo "<textarea rows=1 cols=39 name=nombre >".$row[2]."</textarea><br>";
echo "<input type=text name=calle size=50 value=".$row[3]."><br>";
echo "<input type=text name=exterior size=50 value=".$row[4]."><br>";
echo "<input type=text name=interior size=50 value=".$row[5]."><br>";
echo "<input type=text name=codigo size=50 value=".$row[6]."><br>";
echo "<input type=text name=colonia size=50 value=".$row[7]."><br>";
echo "<input type=text name=estado size=50 value=".$row[8]."><br>";
echo "<input type=text name=pais size=50 value=".$row[10]."><br>";
echo "<input type=text name=email size=50 value=".$row[11]."><br>";
}
}
?>
<p><input type="submit" name="guardar" value=" Guardar "><br>
</p>
</form>