Jump to content

Devilowy

New Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Devilowy

  1. That's why the beginner programmers like me make a big mistake of getting frustrated, angry when something doesn't work although looking badly for the solution of the problem. I couldn't see the forest until now and I yes you're right, need to walk away sometimes to clear my mind instead of drinking another coffee and pushing myself harder to get to it.
  2. Days of searching, I started losing hope that i can finish my website, I was reading through other posts on different forums, pages of reading.... and you just did it in short advice. Thank you, finally someone that knows how to solve the problem within only one post!
  3. Hi I've created my website, I'm hosting it on Godaddy but my email doesn't work at all, it shows the errors so it looks like it works and the mail has been sent, but i don't get any emails at all. I used different emails, one from Gmail and one from Godaddy. I've been loking for the solution for that for last few days... can you help, please? This is the code: <!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" lang="en"> <head> <title>Contact</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="index.css"/> </head> <body> <?php function spamcheck($field) { $field=filter_var($field, FILTER_SANITIZE_EMAIL); if(filter_var($field, FILTER_VALIDATE_EMAIL)) { return TRUE; } else { return FALSE; } } ?> <?php if (!isset($_POST["submit"])) { ?> <div class="mail"> <p class="text">Fill the form below and send it.</p><br> <div id="form"> <form class="formContact" method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>"> <div class="userid"> <p class="descr">Customer ID:</p><input type="text" name="userid"> </div> <p class="descr">Name:</p><input type="text" name="username"> <p class="descr">Email:</p><input type="email" name="email"> <p id="p">or</p> <p class="descr">Tel.no:</p><input type="text" name="usertel"> <p class="descr">Message:</p><textarea rows="7" cols="60" name="inquiry"></textarea> <br><br><br><br><br><br> <input class="button" name="submit" type="submit" value="Send"> </form> <?php } else { if (isset($_POST["username"])) { $mailcheck = spamcheck($_POST["email"]); if ($mailcheck==FALSE) { echo "<p class='error'>Invalid input</p><br>"; echo "<p class='error'>Go back to the form and make sure that you:</p><br>"; echo "<p class='error'>-Enter your name</p>"; echo "<p class='error'>-Enter a correct email address</p>"; echo "<p class='error'>-Fill the message box</p>"; } else { $username = $_POST['username']; $userid = $_POST['userid']; $email = $_POST['email']; $usertel = $_POST['usertel']; $inquiry = $_POST['inquiry']; $to = "[email protected]"; $subject = "$username"; $email_message .= 'Content-type: text/html; charset=utf-8' . "\n"; $email_message = "Name: $username\n"; function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $email_message .= "ID: ".clean_string($userid)."\n"; $email_message .= "Tel: ".clean_string($usertel)."\n"; $email_message .= "Email: ".clean_string($email)."\n\n"; $email_message .= "Message: ".clean_string($inquiry)."\n"; mail($to,$subject,$email_message,$headers); echo "<p class='success'>Thank you, your message has been sent successfully</p><br>"; echo "<p class='info'>We will respond to your message within 24 hours.</p>"; } } } ?> </div> </div> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.