+ 2
how to send the form data once filled to server?
7 Respostas
+ 4
By connect with server using php
+ 4
You can save input form data... witn php & mysqli
+ 3
u can do that by create a database first to save the data into it ... the second step is use the php to connect the database to html (your page) for more simple u can imagine php like a wire conect 2 things togather like database and static html
+ 2
Use php or node.js.
+ 2
you can use php
+ 2
with html when you give the input an attribute called value ="" , after submitting the form sends the values of all the inputs that has a value to the surver
for Example
<label> Username </label>
<input type="text" value="Username">
+ 1
submit