DEV Community

Discussion on: Creating a project/web application of student test in which we collect inputs from “Form” and will store them in DB

Collapse
 
zubairmohsin33 profile image
Zubair Mohsin • Edited

About language selection: Which one do you know enough to get started?

If you have to learn the languages from scratch, I recommend PHP, it's easy to get started with Web Development using PHP.

About dealing with data in multi step forms, you achieve it both ways. Using JavaScript/jQuery or PHP (if you choose ).

In JavaScript/jQuery, you can store values in "localStorage", "sessionStorage" and in "cookies".

In PHP, yes you'll be storing data in server side session.

Multistep forms with Laravel course

Hope this helps.

Collapse
 
sahilofficial671 profile image
Sahil Bhatia

Thanks.