Here is the code I'm using.
PHP:--------------------------------------------------------------------------------
$sendto = @;
$subject = "Form Query";
$extra = "From: $email\r\nReply-To: $email";
mail($sendto, $subject," $name\n$companyname\n$street\n$town\n$county\n$country\n$postcode\n$telephone\n$email\n$webaddr\n$comments", $extra);
I keep getting the error.
Fatal error: Maximum execution time of 30 seconds exceeded in D:\Apache2\htdocs\Site\contact_us_post.php on line 32
Line 32 is the mail function being called. The e-mail will still send but I won't get the message it should display afterwards.
Do I need to change a setting on my Apache Server. I'm running version 2.
Thank you