MmM ahora nose porque sale esto en la web cuando pongo SEND:
Method Not Allowed
The requested method POST is not allowed for the URL /formulario.htm.
Apache/1.3.37 Server at www.turismosj.com.ar Port 80
El codigo es este, tiene algo mal????
$date = getdate(time());
$date = sprintf("%s %s %s %s:%s:%s", $date["mday"],$date["month"],$date["year"],$date["hours"],$date["minutes"],$date["seconds"]);
$from = "$name <$email> ";
$header = "From:".$_POST['email']."\n";
$header .= "Reply-To:$from\n";
$body = "El siguiente comentario ha sido enviado por: \n";
$body .= $_POST['name'] . " el " . $date . "\n\n";
$body .= "---------------------------------------------------------------\n\n";
$body = "Compañia:" .$_POST['company']."\n\n";
$body = "Telefono:" .$_POST['tel']."\n\n";
$body = "Fecha de Cita:" .$_POST['fecha'] ."\n\n";
$body .= "---------------------------------------------------------------\n\n";
$body .= "<Hosting remoto> $REMOTE_HOST\n";
$body .= "<Dirección remota> $REMOTE_ADDR\n";
$body .= "<Agente usado> $HTTP_USER_AGENT\n";
$header=trim($header);
mail($to, $subject, $body, $header) or die("error=No se pudo enviar el mensaje!");
echo "&error=Su mensaje se ha enviado con éxito!!";
?>
GRACIAS