how does a webpage or website submit an email address and hw is that info saved | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

how does a webpage or website submit an email address and hw is that info saved

serious

23rd Feb 2020, 3:26 PM
MÆŘEÁLT
MÆŘEÁLT - avatar
3 Antworten
+ 6
If you are talking about form data saved, you can do it in many ways, but i know 2: (1) Using Firebase Database (2)Using PHP Create a simple form as usual. Then in form, write: <form action="data.php" method="post"></form> In "data.php" (or any php file you created), you have to connect it to a database, like mysql eg.php myadmin. Then, when user submits the information, it is saved in the database for further usage, login etc.
23rd Feb 2020, 3:54 PM
NightFox
NightFox - avatar
0
Depends on what the backend is coded in. Are you talking about sending out e-mails? The info is most likely safed within a database, depending on what you want to safe.
23rd Feb 2020, 3:43 PM
Ruben Eekhof
Ruben Eekhof - avatar
0
I can highly recommend phpmailer: https://github.com/PHPMailer/PHPMailer This was my saving grace when i was using php to do this.
23rd Feb 2020, 3:57 PM
Ruben Eekhof
Ruben Eekhof - avatar