Necesito saber como activar una funcion PHP apartir de un script.
Os explico mas detalladamente.
Estoy creando un FORM SENCILLO DE ENVIO E-MAIL en HTML ... PERÓ NO ME FUNCIONA os envio el codigo seguro que no veo el error:
HTML:
<div id="contatto">
<div class="titolo" id="contatto-titolo"><img name="contatto" src="img/contatto.png" width="466" height="121" border="0" id="contatto" alt="Contatto" /></div>
<div class="case_preview">
<div class="col-sx zero-z">
<form action="/sendmail.php" method="post" id="form-contacts">
<label>Name</label>
<input type="text" name="name" id="input-name"/>
<label>Email</label>
<input type="text" name="email" id="input-email"/>
<label>Message</label>
<textarea name="message" id="input-message"></textarea>
</form>
<div id="send-button-container"><a href="#" id="send-message"><img src="img/bottone_send_up.png" alt="Send" id="send-message-img" /></a> </div>
</div>
PHP:
<?php
$oggetoMail = "Invio messaggio da cuchinando";
$to = "[email protected]";
$paginaDiRitorno = "index.html";
if(isset($_POST['input-name'])&&isset($_POST['input-email'])&&$_POST['input-name']!=""&&$_POST['input-email']!="") sendHtmlMail($oggetoMail, $_POST['input-message'], $to, $_POST['input-name']." <".$_POST['input-email'].">");
header("Location: ".$paginaDiRitorno);
function sendHtmlMail($subject, $text, $messageTo, $sender=""){
$headers = "From: ".$sender."\r\n";
$headers .= "Content-type: text/html\r\n";
$result = @mail($messageTo, $subject, $text, $headers);
}
?>
El caso es el siguiente: CREO QUE NECESITO UNO SCRIPT EN MI HTML PARA ACTIVAR EL PHP ... O NO ... DIGAMOS QUE NO TENGO MUCHA IDEA ...AYUDA PORFAVOR.
MUCHAS GRACIAS