He seguido un videotutorial, (este http://www.youtube.com/watch?v=Sx9QOVGFW-Q )
y no sé porqué me sale error en la linea 73 (el cierre de html)
Parse error: syntax error, unexpected end of file in C:\EasyPHP-12.1\www\cuestion.php on line 73
Os copio el código acortado con lo fundamental, por si veis errores. O por que puede ser. ¿?¿
Muchas gracias de antemano!
<?php if (array_key_exists('enviar',$_POST)){
//script para procesar mail
$para ='[email protected]'; //cambiar mas adelante por el del cliente
$asunto ='Cuestionario enviado por Cliente';
//Procesar las variables $_POST
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$telefono = $_POST['telefono'];
$comentario = $_POST['comentario'];
//Construir el mensaje
$mensaje = "Nombre: &nombre\n\n";
$mensaje .= "Email: &email\n\n";
$mensaje .= "Telefono: &telefono\n\n";
$mensaje .= "Comentario: &comentario\n\n";
//Limitar caracteres por linea a 70 caracteres
$mensaje = wordwrap ($mensaje, 70);
//Enviarlo
$enviarMail = mail ($para, $asunto, $mensaje)
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form name"formulario" method="post" action="<?php echo $_SERVER['../../Users/Nuria/Desktop/WEB GAVE/PHP_SELF']; ?>">
<span class="textletra"><br />
<table width="500px">
<tr>
<td width="86">Nombre </td>
<td width="402"><input id="nMenu2" name="nombre" type="text" class= "casi1" /></td>
</tr>
<tr>
<td><span class="textletra">
<label for="nMenu2"> </label>
email</span></td>
<td><input id="nMenu3" name="email" type="text" maxlength="255" class= "casi2" /></td>
</tr>
<tr>
<td><span class="textletra">
<label for="nMenu3"> </label>
telefono</span></td>
<td><input id="nMenu5" name="telefono" type="text" maxlength="20" class= "casi4" /></td>
</tr>
</table>
</span>
<span class="textletra">
</span><br />
<span class="textletra">
<label for="nMenu"> </label>
</span><br />
<textarea id="n-menu" name="comentario" class="area1"></textarea>
<br />
<input type="submit" name="enviar" value="Enviar" class="btn1" />
<?php if ($_POST && !$enviarMail) {
?>
<p class="advertencia">Lo sentimos, ha habido un problema.</p>
<?php
}
elseif ($_POST && $enviarMail) {
?>
<p class="advertencia">Su mensaje ha sido enviado. Muchas gracias.</p>
<?php } ?>
</FORM>
</body>
</html>