Ver Mensaje Individual
  #8 (permalink)  
Antiguo 19/11/2010, 06:44
w0rldart
 
Fecha de Ingreso: junio-2009
Ubicación: Madrid
Mensajes: 402
Antigüedad: 14 años, 10 meses
Puntos: 20
Respuesta: Problemos con el submit.php..Formulario de Contacto

Comprueba si existe con esto:

Código PHP:
<?php
if(function_exists('mail')){
echo 
"existe la funccion mail";
}else{
echo 
"no existe la funccion mail";
}
?>