Hola
Tengo un formulario en php y me da el siguiente error al procesarlo. Agradecería cualquier ayuda no acabo de encontrar el fallo.
Este el texto que aparece, podéis testarlo en la siguiente página http://www.rapidpaper.com/contacto.htm
Content-Type: text/plain; name="solicitar_server.php"; format=flowed Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="solicitar_server.php"
Warning: main(formulario_errorhtm): failed to open stream: No such file or directory in /home/rapidpap/public_html/solicitar_server.php on line 40
Warning: main(): Failed opening 'formulario_errorhtm' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/rapidpap/public_html/solicitar_server.php on line 40
Y estas son las líneas del archivo php que dan error
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
if (empty($empresa) || empty($nombre) || empty($telefono) || empty($email)){
include(formulario_error.htm);
echo "<title>Por favor compruebe que todos los datos requeridos están
cumplimentados</title>"
."<style>"
."mail {font-family: Verdana; font-size: 8pt}"
."</style>"
."<div class=\"mail\">*Por favor compruebe que todos los datos requeridos
están cumplimentados</div>";