Dear all,

Requirement is - There is online Form with lot instructions and also user inputs values and there is also a row column intersection values also to be stored.

Eg - Name, details1, instruction1, instruction2 - There are having singular values.

Other - Prospective loss - Here the user will enter in Amount1, amount2, amount 3 for the same item.

Further the user has to print the entire form with same text of UI in pdf/excel.

How to design db for picking up label and its corresponding values from backend.

Thanks in Advance,

Regards,

Vivek

Recommended Answers

All 2 Replies

What have you got so far?

This is more of html question, but here you go...
Most of html tags can use ID or NAME to store identifications that can be read and sent with form for processing such as

<form>
<input type="radio" id="sex" name="sex" value="male"> Male
<br>
<input type="radio" id="sex" name="sex" value="female"> Female
</form>

Combined with PHP/JSP/ASP you can find out which value belongs to which element

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.