vengo a seccion php por que con este bello lengue trabajo
Saludos a todos una pregunta como hago para redirecionar en Wap tenog este codigo:
<?php
header("Content-type: text/vnd.wap.wml");
echo "<?xml version=\"1.0\"?>";
echo ("<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.3//EN http://www.wapforum.org/DTD/wml13.dtd\">");
?>
<wml>
<card id="card1" title="Datos">
<p>
<?php
// format and output date
if ($nombre=="" || $email=="" || $pais=="" || $estado=="" || $mensaje=="")
{
?>
Faltan datos por favor regresar y complete el formulario<br/>
<a href='libro.wml'>Regresar</a>
<?php
}
else
{
include("conexion.php");
$hoy=date("d-m-Y h:i a");
function poner($target)
{
$target = str_replace("<","<",$target);
$target = str_replace(">",">",$target);
$target = str_replace("á","á",$target);
$target = str_replace("é","é",$target);
$target = str_replace("í","í",$target);
$target = str_replace("ó","ó",$target);
$target = str_replace("ú","ú",$target);
$target = str_replace("Á","Á",$target);
$target = str_replace("É","É",$target);
$target = str_replace("Í","Í",$target);
$target = str_replace("Ó","Ó",$target);
$target = str_replace("Ú","Ú",$target);
return $target;
}
$mensaje=poner($mensaje);
mysql_query("INSERT INTO libro values('Null','$hoy','$nombre','$email','$pais','$ estado','$mensaje') ") or die (mysql_error());
header("Location:index.wml");
}
?>
Inserta los datos pero no me redireciona me da error este:
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\wap\libro2.php:3) in C:\AppServ\www\wap\libro2.php on line 41
ya elimine los espacios pero siguie igual o sabes otra forma de acerlo via wap se los agradecere mucho.