+ 1
If you are doing a “contact me” section for an HTML code, where does that information go?
Do you have to add something so it saves? And would you get emailed if someone fills it out?
2 odpowiedzi
+ 2
https://www.sololearn.com/Course/PHP/
https://www.sololearn.com/Course/SQL/
^Check those out and learn those after you're done with Javascript. Basically, the form will be "submitted" to wherever you tell it to submit it. By default, it'll submit to the same page, but if you specify, you can send it to whatever other file you want, such as a PHP script that handles the form data. From there you could have the script do whatever you want with the information, whether you want it to email it to someone, store it in a database, store it as a cookie on their computer, store it as a text file on your server, etc...
When you're done with Javascript, go through the PHP and SQL courses. That'll give you a better understand of how you can interact between the client end and the server end.
0
Thanks, but how does it work for HTML?