Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by hpscorpion

  1. H

    HTML & CSS Contact form dont send email.

    I try this one, but dont work. but i think its close. <?php $errorMSG = ""; // NAME if (empty($_POST["name"])) { $errorMSG = "Name is required "; } else { $name = $_POST["name"]; } // Phone if (empty($_POST["phone"])) { $errorMSG = "Phone is required "; } else {...
  2. H

    HTML & CSS Contact form dont send email.

    @Malcolm ohh I find the problem is my Host.. I try on free host and work perfect. no problem with code. my isp host said dont use PHP mail().. and advised me to change to framework SMTP, like PHPMailer() or SwiftMailer(). No ideia how to change this.
  3. H

    HTML & CSS Contact form dont send email.

    I'm using a template website that is practically finished, but the form submit dont work. Pls anyone can help me? Here is my basic html: <form action="#" class="form-contact" id="contactForm"> <div class="row"> <div class="col-sm-6 col-md-6"> <div class="form-group"> <input...
Back
Top Bottom