0
How does the sign up and login form work.If a user need to sign up and login before accessing my forum page. Is it that my host will take care of this job
2 Respuestas
0
your page form is connected with php and php gets the data from form input and than stores in mysql.
basically php takes care of the sign up and login. your hosting takes care of the server where the information is stored and all your other files.
0
while we are talking about HTML, these are just forms that submits data to server. the 'magic' have to happen on the server side. just remember - html or better http protocol is stateless, so you have to use something like cookie to keep info of your server session.