0

I am creating one Exam system in which I want to add numerical questions from html form to mysql database , how can I achieve this , I tried with some editors but did not work attaching sample image of questions

!Thanks

enter image description here

  • 4
    Does this answer your question? [How to write equations in html?](https://stackoverflow.com/questions/12431339/how-to-write-equations-in-html) – luk2302 Jan 11 '21 at 15:02

1 Answers1

0

First, you will need to decide which mathematics markup language you want to use.

Some examples are AsciiMath and LaTeX. You could then store the equations/questions as strings in the chosen format in a varchar column in your MySQL database.

Then you would use a library like MathJax to typeset the questions for displaying to the users.

user1392897
  • 831
  • 2
  • 9
  • 25