Contact Page | With Sending Emails PHP - Using PHPMalier - PHP & Javascript

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ก.ย. 2024
  • In this tutorial, you can learn how to develop a PHP contact page (contact form) to send emails (messages) using PHPMailer. This email sending contact page is tested on both localhost and Live Host Server and It's 100% Working. Hope this tutorial much more helpful.
    ▶ Part 01 - Responsive Contact Page UI Design - • Responsive Contact Pag...
    ∎ Download Source codes - www.codingsnow...
    ∎ Our Website - www.codingsnow...
    ∎ Facebook Page - / codingsnow
    ∎ Support me on Patreon - / codingsnow
    Want to help out? How about donating?
    Paypal Donation - paypal.me/codi...
    #php_send_email #php_contact_form_send_email #phpmalier
    Background music:
    ____________________
    Steps by Roa / roa_music1031
    Creative Commons - Attribution 3.0 Unported - CC BY 3.0
    Free Download / Stream: bit.ly/steps-roa
    Music promoted by Audio Library • Steps - Roa (No Copyri...
    Holiday by JayJen & Osheen
    / jayjenmusic
    / osheen
    Creative Commons - Attribution 3.0 Unported - CC BY 3.0
    Free Download / Stream: bit.ly/al-holiday
    Music promoted by Audio Library • Holiday - JayJen & Osh...
    Fresh Time by Roa / roa_music1031
    Creative Commons - Attribution 3.0 Unported - CC BY 3.0
    Free Download / Stream: bit.ly/roa-fre...
    Music promoted by Audio Library • Fresh Time - Roa (No C...
    ____________________
    Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.

ความคิดเห็น • 300

  • @CodingSnow
    @CodingSnow  4 ปีที่แล้ว +14

    If you getting any error alert like below when you run this on a live host server. There can be multiple reasons for that. If you are running this on a live host, you have to use the necessary settings in your host service. Because the settings of the host services are different from one to another. Read this.
    "SMTP Error: Could not authenticate."
    "SMTP Error: Could Not Connect to SMTP Host"
    If you get these errors when you try on a live host. This might be helpful.
    In your host > go to cpanel > Email Accounts > Webmail > Configure Mail Client
    Then you can find Secure SSL/TLS Settings (Recommended).
    From that settings use settings below.
    ● Username (Web Email Address)
    ● Password (Web email Password)
    ● Outgoing Server
    Host can be yourdomain.com / mail.yourdomain.com
    SMTP Port: Can be 465/587
    *you can use a Gmail or any email address to receive emails.
    After you change codings it can be look like below.
    $mail->isSMTP();
    $mail->Host = 'yourdomain.com'; // Can be mail.yourdomain.com
    $mail->SMTPAuth = true;
    $mail->Username = 'webmail@domain.com'; // Your host email account which you want to use as SMTP server
    $mail->Password = 'host email password'; // host email account password
    $mail->SMTPSecure = 'ssl'; // Can be tls
    $mail->Port = 465; // Can be 587
    $mail->setFrom('webmail@domain.com'); // Your host email account which you used as SMTP server
    $mail->addAddress('youranyemail@email.com'); // Email Address where you want to receive emails (You can use any other email address to receive emails)

    • @violet29ify
      @violet29ify 4 ปีที่แล้ว +1

      You mean to say, we shud set like this or? please help
      $mail->isSMTP();
      $mail->Host = 'haywire.in';
      $mail->SMTPAuth = true;
      $mail->Username = 'contact@haywire.in'; // Your host email account which you want to use as SMTP server
      $mail->Password = 'which password? my godaddy password or godaddy mail password? ';
      $mail->SMTPSecure = 'ssl';
      $mail->Port = 465;
      $mail->setFrom('contact@haywire.in''); // Your host email account which you used as SMTP server
      $mail->addAddress('contact@haywire.in'');
      please tell if this is correct? my domain name is www.haywire.in and godaddy mai is contact@haywire.in.. please fill in and send the correct format for my contact form. i have hosted live but have given a different name for demonstration.

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      @@violet29ify Yes, Set like that.
      Confirm that you set the correct Secure SSL/TLS Settings in sendemail.php.
      To confirm, Find Mail Client Manual Settings - Secure SSL/TLS Settings (Recommended).
      Go to Webmail > Webmail Features > Configure Mail Client. Then you can find your Secure SSL/TLS Settings (Recommended).
      The settings include Username, Password, Incoming Server, Outgoing Server, SMTP Port. Use those settings.
      'which password? my godaddy password or godaddy mail password? '
      *It's godaddy mail password.
      $mail->addAddress('contact@haywire.in''); For this line, you can use your any other email address to receive emails that sending from the contact form.

    • @jasons7114
      @jasons7114 4 ปีที่แล้ว

      @@CodingSnow what happen if i use freetzi

    • @jonugroho6492
      @jonugroho6492 4 ปีที่แล้ว +1

      Coding Snow thanks a lot Man. Its works. After looking around for 3 months

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว +1

      @@jonugroho6492 Glad to hear!! You're most welcome!

  • @celestusnyalugwe7943
    @celestusnyalugwe7943 3 ปีที่แล้ว +3

    Hours and hours on end trying to figure out how to do this , til I happened to come across this video and followed through.
    I have finally achieved what i had been trying to do all along!!
    THANK YOU !!!

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      So glad you did it. You're mostly welcome!!

  • @ujjwaljogekar5082
    @ujjwaljogekar5082 3 ปีที่แล้ว +4

    Thank u coding snow 🧡🧡🧡 i am trying to send mail from 1 week but now finally done . Keep doing dude👍👍👍

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're welcome ❤️. Will do.

  • @mouctechy
    @mouctechy 3 ปีที่แล้ว +4

    thank you so much Sir after struggling one week I finally got it

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว +2

      You're most welcome!

  • @nikhilpatidar4714
    @nikhilpatidar4714 3 ปีที่แล้ว

    I love you brother, I was so pissed cause I wasn't able to add this functionality in my site but you made it possible man.
    Thank you🙏🤗

  • @fadhlurrahman2588
    @fadhlurrahman2588 4 ปีที่แล้ว +3

    Thanks to god... what bring me to this video... successfully!

  • @leoniezebaze322
    @leoniezebaze322 ปีที่แล้ว

    oh my god. thanks a lot . days and nights trying to do it. finally thanks to you tousend thanks

  • @proveedorasantafe6828
    @proveedorasantafe6828 7 หลายเดือนก่อน

    Hello, grateful for your videos and all the knowledge you share. I would like to ask you the following question: Is there a way not to change the extension of the index.html file by index.php and in the index.html form "" in action add "sendemail.php" and this will send the alerts when sending the email.

  • @brendanm6881
    @brendanm6881 3 ปีที่แล้ว +2

    Great video! Was wondering how do you make the alert message disappear after the email is sent?

  • @sameersalam8404
    @sameersalam8404 3 ปีที่แล้ว

    Thanks brother your method is very simple...i finally got it

  • @himanigajjar4238
    @himanigajjar4238 2 ปีที่แล้ว

    Thank you so much, this is the only tutorial that worked for me, keep it up, thank you for your hard work. Just one question though, How can we allow anyone to send emails through the contact form as currently, we can only receive the email from the email address set manually in the code.

  • @FreedGhalib
    @FreedGhalib 2 ปีที่แล้ว +1

    Thanks a lot , it works 100% great

  • @ruznisadiq261
    @ruznisadiq261 3 ปีที่แล้ว

    Thanks for the simple method man, worked like a charm!

  • @vikramdityaarora696
    @vikramdityaarora696 4 ปีที่แล้ว +2

    Thank God, it finally worked for me

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      Glad it worked! 👍

  • @repalda4736
    @repalda4736 2 ปีที่แล้ว

    Php is new to me but i try my best to learnnn!!!❤❤

  • @darpanwork3685
    @darpanwork3685 2 ปีที่แล้ว

    I'm not getting mails after completing all code and process no alert sowing after submitting the form and no mail

  • @user-hp4bx3gn6k
    @user-hp4bx3gn6k 2 ปีที่แล้ว

    it does not work, exactly same code
    I click on submit button and nothing happens : neither error message nor success message

  • @jomarierola9290
    @jomarierola9290 3 ปีที่แล้ว

    thank u its working, finally I got answer to my prayers thanks to you!!

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're most welcome!

  • @monikajadhav9307
    @monikajadhav9307 3 ปีที่แล้ว +1

    Informative video. My Question is can we run this Contact form without entering email password in the coding ? entering the password in the coding seems not safe. please advise.

  • @alexokeyo4616
    @alexokeyo4616 2 ปีที่แล้ว +1

    Sir, it gives me an error "could not connect to SMTP Host" Please assist.

  • @IamMidoZ
    @IamMidoZ 3 ปีที่แล้ว +1

    Message not sent and these things aren't working what does it do?

  • @kirthikakirthika1230
    @kirthikakirthika1230 ปีที่แล้ว

    I am getting this error -- SMTP error could not authenticate -- how can it will be rectify

  • @najiali651
    @najiali651 2 ปีที่แล้ว

    You,re great person, you helped me a lot

  • @nezhael-asri1253
    @nezhael-asri1253 3 ปีที่แล้ว +1

    Thank you so much for this wonderful work, but I have a problem, when I run the code I have this error : SMTP Error: Could not connect to SMTP host.
    If someone could help me , i'd be so grateful....thank u in advance

  • @Daniel_H01
    @Daniel_H01 2 ปีที่แล้ว

    what is the window.history.replacestate for in the index.php file at the end in the tags? what is it used for? is it needed? having issues implementing this with local host.

  • @ahmedalkharam
    @ahmedalkharam 3 ปีที่แล้ว

    Thanks a lot you saved a lot of time for me, it works perfectly. Only one issue, when I want to reload my page it pop up this message "Are you sure you want to send a form again?", any ideas?

  • @waynegaming7753
    @waynegaming7753 3 ปีที่แล้ว

    Its now working
    If Anyone Got Error Like:
    "SMTP Error: Could not authenticate."
    "SMTP Error: Could Not Connect to SMTP Host"
    please turn off your anti-virus its now working for me :DDDDDDDDDDD

  • @ganeshshinde2548
    @ganeshshinde2548 2 ปีที่แล้ว

    Perfect...great job..gbu..

  • @instruktormata7074
    @instruktormata7074 2 ปีที่แล้ว

    How to not reload the page? I want that when I click on the submit button the text shows up without reloading the page...

  • @annapurnaful
    @annapurnaful 4 ปีที่แล้ว +1

    Nice Will try definitely .

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      Thank you! ❤️❤️❤️

  • @lonelyplanet5474
    @lonelyplanet5474 3 ปีที่แล้ว +1

    Thank you very much sir. It worked.

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว +1

      You're welcome! ❤️

    • @lonelyplanet5474
      @lonelyplanet5474 3 ปีที่แล้ว

      @@CodingSnow Can you help us how can we include the attachment fields too. I sure there are many who would like to know Thank you in advance sir.

  • @AhmadFoysal
    @AhmadFoysal 3 ปีที่แล้ว

    Everything works fine for me without page reload. How to stop page reload on form submission, I used the script you mentioned but it does not work for me unfortunately.

  • @mayurighangare4338
    @mayurighangare4338 3 ปีที่แล้ว

    Thank You so much for making this video you help me a lot☺☺

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're most welcome! 😊

  • @Nakht_IT_Solutions
    @Nakht_IT_Solutions 3 หลายเดือนก่อน

    Hi and thank you for the video. I am really interested in this particular process. I am having a couple of issues I tried to download your source code to see what I am doing wrong but I didn't see it among you other source codes. Did you remove it?

  • @media7588
    @media7588 2 ปีที่แล้ว +1

    Thanks you Soo Much

  • @jerjeromeeeeee_m
    @jerjeromeeeeee_m 2 ปีที่แล้ว

    How to fix the problem for not showing the notification when sending? I followed all the codes in the video but can't see the notification when sending. Do I need to change the file format of the index(file) into ".php"? Because I also tried changing it but the system doesn't reload or show the index tab. Can you help me solve this problem?

  • @aliyilbasi8587
    @aliyilbasi8587 3 ปีที่แล้ว

    I can receive maşl without ant error but After submit it I would see notification on html page I could not adap that

  • @jamesryan5963
    @jamesryan5963 3 ปีที่แล้ว

    I removed the true in new PhphMailer(), then now it says message has been send but when i look at my email, nothing
    (Please help)

  • @SURIYA-pp4iu
    @SURIYA-pp4iu 3 ปีที่แล้ว

    please help me.................. im getting this error
    "SMTP connect() failed. github.com/PHPMailer/PHPMailer/wiki/Troubleshooting"

  • @venkatkosuri5224
    @venkatkosuri5224 3 ปีที่แล้ว

    I done everything bro
    If i click on send
    It won't show output in Gmail and
    Message has been sent

  • @thutaminthway9672
    @thutaminthway9672 2 ปีที่แล้ว

    SMTP Error: Could not authenticate.
    Can someone help me please.?

  • @jefersonborras2448
    @jefersonborras2448 2 ปีที่แล้ว

    thanks you so much man

  • @rekan_98
    @rekan_98 3 ปีที่แล้ว

    why less secure the Gmail account?

  • @mksbeginnertomaster8690
    @mksbeginnertomaster8690 3 ปีที่แล้ว

    I have my professional mail I'm not getting any response

  • @btman124
    @btman124 3 ปีที่แล้ว

    Bro I am making website and want to activate send msg so what's the role of xampp server I didn't understand. If suppose I made a website and people want to send message to me so they have to enable xampp server. I am beginner that's why asking.pls help

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      Put this one on your website host. If this method didn't work use your webmail to do it. Read the pinned comment in this video.

  • @YoniTube
    @YoniTube 2 ปีที่แล้ว

    thanks bro great work 😘😘😘

  • @testeusedeveloppeuse1337
    @testeusedeveloppeuse1337 4 ปีที่แล้ว +1

    THANK YOU SOOOOO MUTCH!!!

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      You're most welcome! ❤

  • @galaxyg8733
    @galaxyg8733 3 ปีที่แล้ว

    Dear Sir, I follow your coding and it works in localhost. However, when the contact.php & sendemail.php files are loaded to my website server folder httpdocs, it responds 'http error 500' after run on Chrome browser. Is he server problem ? Could advise the solution. Thanks.

  • @studentinusa7117
    @studentinusa7117 3 ปีที่แล้ว

    you are legend !!!

  • @recdemecsquijouentpasrp
    @recdemecsquijouentpasrp 3 ปีที่แล้ว

    MAIL FROM command failed,Authentication Required. Help :'(

  • @amithshantha8837
    @amithshantha8837 2 ปีที่แล้ว

    Wow Thanks a lot!

  • @tharinduabishek2505
    @tharinduabishek2505 4 ปีที่แล้ว +1

    Super🤟🤟💐💐

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      Thank you! ❤️❤️❤️👍

  • @user-tr2yg1fd3x
    @user-tr2yg1fd3x ปีที่แล้ว

    bro how i can add this contact in my website......please tell

  • @contactasiatic5004
    @contactasiatic5004 4 ปีที่แล้ว

    hi pls help me, i got this error SMTP connect() failed. github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

  • @user-tr2yg1fd3x
    @user-tr2yg1fd3x ปีที่แล้ว

    Parse error: syntax error, unexpected token "/", expecting "," or ";" in C:\xampp\htdocs\Contact\sendemail.php on line 2 broo this is coming please fix it

  • @MdMasum-mk9ss
    @MdMasum-mk9ss 3 ปีที่แล้ว

    Thanks 👍👍👍👍👍👍

  • @razzanindrana1900
    @razzanindrana1900 2 ปีที่แล้ว

    THanks alot sir It really work!

  • @nabeel9867
    @nabeel9867 3 ปีที่แล้ว

    So if I don't have hosting , I can't run this?
    it would run only on localhost? @Coding Snow

  • @thiyagarajanm4149
    @thiyagarajanm4149 3 ปีที่แล้ว

    Extension missing openssl error i getting, how fix..?

  • @saurabhmishra734
    @saurabhmishra734 3 ปีที่แล้ว

    i am getting this error message "Parse error: syntax error, unexpected '[' in C:\xampp\htdocs\contact1\phpmailer\PHPMailer.php on line 167" can u have a look at it

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      It's a syntax error from PHPMailer.php file. Try it by replacing the original PHPMailer.php file again or look at that error line 167 on that file and correct it.

  • @bhagwatilalmenaria8355
    @bhagwatilalmenaria8355 3 ปีที่แล้ว

    how to go on host and then cpanel in order to change settings? please help.

  • @kavyajtg4607
    @kavyajtg4607 3 ปีที่แล้ว

    Hello,
    I am getting this syntax error
    Parse error: syntax error, unexpected"phpmailer/Exception.php"(T_CONSTANT_ENCAPSED_STRING)in C:\xampp\htdocs\contact\sendemail.php on line 3
    Can you solve this?

    • @user-tr2yg1fd3x
      @user-tr2yg1fd3x ปีที่แล้ว

      sis put this ' ' this inverted comma not double one :) can you tell me how to solve this problem
      Parse error: syntax error, unexpected token "/", expecting "," or ";" in C:\xampp\htdocs\Contact\sendemail.php on line 2 please

  • @monishp168
    @monishp168 3 ปีที่แล้ว

    how to host this in github pages?
    and how to make alert msg disappear after some seconds

  • @arofficialtv3727
    @arofficialtv3727 3 ปีที่แล้ว

    How can I change the me after ypu received the email?

  • @olumidemicheal1106
    @olumidemicheal1106 2 ปีที่แล้ว

    i have a solution to the smtp error cannot connect to the host

  • @beluga2354
    @beluga2354 2 ปีที่แล้ว

    How do I add spam protection

  • @kelvinkelvinkelvin3708
    @kelvinkelvinkelvin3708 3 ปีที่แล้ว

    i cant find the source code on the website

  • @youtubehelper227
    @youtubehelper227 4 ปีที่แล้ว +1

    Super

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      Thank you! ❤️

  • @dwayne5001
    @dwayne5001 3 ปีที่แล้ว

    thanks man it worked

  • @financeinfolabs818
    @financeinfolabs818 4 ปีที่แล้ว

    Thanks, its working

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      You're welcome! ❤️

  • @jerryogunbor7768
    @jerryogunbor7768 3 ปีที่แล้ว

    Hello. If I want to upload the code on an online hosting account, since there is no index.html, rather index.php, I do I go about this? Or should I change the index.php to index.html?

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      Hey there! If you're going to put this contact form into the index file, the index file needs to be a .php file. Because php codes only works on .php files. Always the page that you're going to put this contact form should be a php file.

  • @mohammedayaan2214
    @mohammedayaan2214 ปีที่แล้ว

    Hey sir what application did you use for that php code to run

  • @himy2195
    @himy2195 3 ปีที่แล้ว

    thanks very helpful !

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're most welcome!

  • @rodolfogarcia2011
    @rodolfogarcia2011 3 ปีที่แล้ว

    If i have a diferent domain email. Please help me and thanks in advance.

  • @MdMasum-mk9ss
    @MdMasum-mk9ss 3 ปีที่แล้ว

    Thank you so much brother

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're most welcome brother! ❤️

  • @MdMasum-mk9ss
    @MdMasum-mk9ss 3 ปีที่แล้ว

    Thanks bro

  • @rohitprabhu5321
    @rohitprabhu5321 3 ปีที่แล้ว

    Hello mate, Tutorial was great, But I have been receiving this error/exception "SMTP Error: Could not connect to SMTP host." Please help me with this thingy here

    • @rohitprabhu5321
      @rohitprabhu5321 3 ปีที่แล้ว

      Btw I got it sorted, just had to turn of firewalls and anti virus shields, ty anyways for the tutorial, also buddy is it possible to auto generate a welcome or thank you email to those who subscribe to the newsletter or something?

  • @aymansaadi2033
    @aymansaadi2033 2 ปีที่แล้ว

    can the php version cause a problem ?

  • @Joseph-yd3sq
    @Joseph-yd3sq 3 ปีที่แล้ว

    mine works with local server, but when i did it in live i get error that says: SMTP error: could not authenticate. can u help me please? im using HostGator

    • @anilpaul7373
      @anilpaul7373 3 ปีที่แล้ว

      how did u work on local server?
      plz tell

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว +1

      In your host > go to cpanel > Email Accounts > Webmail > Configure Mail Client
      Then you can find Secure SSL/TLS Settings (Recommended).
      From that settings use settings below.
      ● Username (Web Email Address)
      ● Password (Web email Password)
      ● Outgoing Server
      Host can be yourdomain.com / mail.yourdomain.com
      SMTP Port: Can be 465/587
      *you can use a Gmail or any email address to receive emails.
      After you change codings it can be look like below.
      $mail->isSMTP();
      $mail->Host = 'yourdomain.com'; // Can be mail.yourdomain.com
      $mail->SMTPAuth = true;
      $mail->Username = 'webmail@domain.com'; // Your host email account which you want to use as SMTP server
      $mail->Password = 'host email password'; // host email account password
      $mail->SMTPSecure = 'ssl'; // Can be tls
      $mail->Port = 465; // Can be 587
      $mail->setFrom('webmail@domain.com'); // Your host email account which you used as SMTP server
      $mail->addAddress('youranyemail@email.com'); // Email Address where you want to receive emails (You can use any other email address to receive emails)

  • @xXNJEEBXx
    @xXNJEEBXx 3 ปีที่แล้ว

    how to add style for the email's html tags

  • @chivasael363
    @chivasael363 2 ปีที่แล้ว

    what is the name of the app besides XAMPP

  • @ayeshaayesha2946
    @ayeshaayesha2946 3 ปีที่แล้ว

    Without php mailor can we send to email address??

  • @gerardhey4425
    @gerardhey4425 2 ปีที่แล้ว

    how can i create the db.php ? To put this contact page online

  • @ultimatelokal7040
    @ultimatelokal7040 3 ปีที่แล้ว

    Hi Im having this error
    PHPMailer SMTP Error: Could not connect to SMTP host

  • @tehan1359
    @tehan1359 3 ปีที่แล้ว

    hello, thanks for the video, code runs well but I got a problem in my site can you help me ...is there anyway to contact you

  • @kaushalprajapati7954
    @kaushalprajapati7954 3 ปีที่แล้ว

    I have an error php mail error

  • @bigboy-lp8xv
    @bigboy-lp8xv 15 วันที่ผ่านมา

    you did not even show the css and html code

  • @vangelisefthimiatos964
    @vangelisefthimiatos964 3 ปีที่แล้ว

    Thank you!!!!

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว +1

      You're welcome!

  • @AllinOne-ly8ng
    @AllinOne-ly8ng 3 ปีที่แล้ว

    Does this code works using xampp server

  • @TechnoSG
    @TechnoSG 3 ปีที่แล้ว

    Brother its says source code not found

  • @reeone6222
    @reeone6222 3 ปีที่แล้ว

    thanks lot to YOUUUUUUUU!

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว +1

      You're most welcome!

  • @testingdbs1462
    @testingdbs1462 3 ปีที่แล้ว

    thank you

  • @hariganes9603
    @hariganes9603 3 ปีที่แล้ว

    I have to always open this file issit?

  • @supritdagade77
    @supritdagade77 3 ปีที่แล้ว

    I didn't get a response message on sending mail

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      Check the source codes again it will work.

  • @Lucifer-king
    @Lucifer-king 4 ปีที่แล้ว +1

    Sir please make a video on working php live comment system and it show our email address on sending comment .🙏🙏🙏

    • @Lucifer-king
      @Lucifer-king 4 ปีที่แล้ว

      Sir please reply soon I have search for it bet all the videos are in English and they are not good and they are very complex to make

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว +1

      @@Lucifer-king Yes, It's a complex one. It can be more complex on the purpose of it's using. Didn't you try a 3rd party commenting system?

    • @Lucifer-king
      @Lucifer-king 4 ปีที่แล้ว +1

      Sir I does not know anything about comment system🙅🙅 ... Sir plz make a complete video then I can add comment in my own website🙏 .. I am a new web developer and I am learning such types of complex thing😭😭😭 ...🙏🙏🙏🙏

  • @wicleicefabiofabio9610
    @wicleicefabiofabio9610 4 ปีที่แล้ว

    I have a quick question, could someone clear that up? I have a form sitting at the bottom of a landing page, so the question is how does that work, do I need to change this landpage.html into landpage.php, won't this break my code? besides, I am using webpack as my bundler. Thank you so much in advance!

    • @CodingSnow
      @CodingSnow  4 ปีที่แล้ว

      Do you want to run this PHP form on your page? To run this PHP form you have to change the extension to .php

    • @jarmo4596
      @jarmo4596 3 ปีที่แล้ว

      same here. I have index.html perfectly coding with css. Now, there's another index.php, Im getting lost how to combine them together. either 1 of them must go or what? I just created contact.html Now im getting stuck.

  • @hariganes9603
    @hariganes9603 3 ปีที่แล้ว

    It won't work on html?

  • @husseinwag7820
    @husseinwag7820 3 ปีที่แล้ว

    thank you soooo muchhh

    • @CodingSnow
      @CodingSnow  3 ปีที่แล้ว

      You're most welcome!

  • @JorgeMiguel147
    @JorgeMiguel147 3 ปีที่แล้ว +1

    👍

  • @mksbeginnertomaster8690
    @mksbeginnertomaster8690 3 ปีที่แล้ว

    Is this working for cpanel