0
Html form
How to make actuall html form which take email , username ect... And send to the server(onlife safe cloud ) and afterwards when user want to resume the work or activity from where he stopped previously by login
3 Answers
+ 1
If you want to create a form which sends the email and username to some cloud address, then, i would recommend you to use some advanced code editors, and do the backend. You will have to do many things, but the first thing is to copy the address of the cloud location where you want the data to be sent, and then, you can use your backend skills to provide further functionality. You can take one of the courses given by Sololearn, which will teach you the fundamentals of SQL and you can take the SQL Intermediate course, if you want to learn some advanced SQL. Here is the link for the "Introduction to SQL! course:
https://www.sololearn.com/en/learn/courses/sql-introduction
Hope this helps.
+ 1
form:
https://getbootstrap.com
choose your preferred size/colo[u]r, etc.
sending the data:
$_POST[""];
# use the $_POST superglobal in php
resume:
# use session superglobal and store the process in a cookie
0
<form>
<input type="text" name="username"/>
<input type="email" name="email"/>
</form>