DEV Community

Sahil Bhatia
Sahil Bhatia

Posted on

2 1

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

I am Creating a project/web application in which we collect inputs from "Form" and will store them in DB. Will access data in future for further calculation and show the result.

So i want to know in what language i should start that project in php or java?

Details of project/web application:

  1. First there will be a pre form which will just create a little entry in db
  2. then on the bases of that little entry new complete full test will be started
  3. After completion of test from step 2 result will be stored in same data entry for further calculation
  4. After calculating result will be shown to user

So how do we plan this kind of project, do we need sessions in them to change those form windows or normal jquery will do that.

Most importantly if someone can relate me with the structure of this project or if someone have same pre created any project, link, website, web application anything they can refer that will be really helpful.

I know i am sounding lame but yes i am beginner in this.

Thanks.

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (2)

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.

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay