Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialkali dev
312 Pointswhich programming language do i have to learn to store data in server about forms which we create in html
i know to html and CSS coding but i want to know which programming language did i use to store data from forms to server as a database
1 Answer
Kevin Korte
28,149 PointsWell, the most common language would be SQL, and a very popular database option would be MySQL, however there are other SQL options out there, such as PostgreSQL, and more.
There are also NoSQL options out there, which is what I'm currently using, such as MongoDB. However, I'd recommend you probably go with MySQL, it's wildly popular, and you should be able to find plenty of resources online to help.
As far as what backend language to use to accept form data and send it off to the database, it quite frankly doens't matter, all back end languages are capability of this functionality.
kali dev
312 Pointskali dev
312 Pointsthanks