Saving form inputs in database

Hey guys,

I am new to oxid and I am still struggling to find my way around it.

I have the following form:

		<form action="#">
			  <h6>First name:</h6>  <input type="text" name="name" id="name" style="width:600px; height:25px;">
			  <br><br>

			  <h6>Email: </h6>  <input type="email" id="email" name="email" style="width:600px; height:25px;"> 
			  <br> <br>

			  <textarea name="comment" id="comment" style="width:600px; height:100px;" placeholder="Your comment here"></textarea>
			  <br>
			  <input type="submit">
		</form>

and I would like to save the inputs in a database.
I have created a new table named “comments” in the database with the columns “name”,“email” and “comment”.

Could you please tell me how to store the inputs in the database?

Thanks a lot.

https://oxidforge.org/en/getting-started#toggle-id-2