Hi I have my website uploaded now where I used a template bought. The template has a Contact Us form imbedded. The php form that came with the template was this; <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head><title>401 Authorization Required</title> <style type="text/css"> <!-- h1 { font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 24px; color:#333333; line-height:19px; font-weight: 200; text-transform: uppercase; } p { font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#333333; line-height:19px; } --> </style></head><body><br> <h1>Internal server error </h1> <p> We’re sorry for the inconvenience, but there has been an internal server error. Please click on the back button to return to the former page. </p> </body></html> and it just gives a message saying there was an internal error. I created my own ; <?php $your_company = $_GET['company']; $your_name = $_GET['your_name']; $your_telephone = $_GET['telephone']; $your_email = $_GET['email']; $your_message = $_GET['message']; $recipient_email = "info@pctech.com.eg"; $subject = "from " . $email; $headers = "From: " . $your_name . " <" . $email . ">n"; $headers .= 'Content-type: text/html; charset=iso-8859-1'; $content = "<html><head><title>Contact letter</title></head><body><br>"; $content .= "Company: <b>" . $your_company . "</b><br>"; $content .= "Name: <b>" . $your_name . "</b><br>"; $content .= "Telephone: <b>" . $telephone . "</b><br>"; $content .= "E-mail: <b>" . $email . "</b><br><hr><br>"; $content .= $message; $content .= "<br></body></html>"; mail($recipient_email,$subject,$content,$headers); ?> <html> <body bgcolor="#282E2C"> <div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold"> Your message was sent. Thank you. </div> </body> </html> <script>resizeTo(300, 300)</script> But it still isnt working. if anyone can I would appreciate them going to www.pctech.com.eg and on the contact us page and try the form urself to see the error page u get. can anyone shed some light on this error and help. I would be sooo grateful. Also is there any way I can be sure whether PHP is enabled thrpugh my host or whether I have to use ASP I have emailed them but not had an answer. Was just checking whether there was a way i could check for myself. Thanks