Html form | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

5th May 2024, 4:54 PM
Shivam
Shivam - avatar
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.
7th May 2024, 2:43 PM
Danish Zubair
Danish Zubair - avatar
+ 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
6th May 2024, 11:33 AM
Mihaly Nyilas
Mihaly Nyilas - avatar
0
<form> <input type="text" name="username"/> <input type="email" name="email"/> </form>
8th May 2024, 10:02 PM
Fabian Roy
Fabian Roy - avatar