Language to build a school website that connects 2 persons to meet in real life and learn . | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Language to build a school website that connects 2 persons to meet in real life and learn .

15th Apr 2023, 7:54 AM
Iam_IKHINE
Iam_IKHINE - avatar
3 Antworten
+ 5
Such a system is usually called a "web application". It has sereval distinct parts: - the front end is the actual web page that the users interact with. It is built with HTML, CSS and Javascript - the back end is where the "business logic", the actual code lives.You can write this in virtually any programming language, although some are better suited than others. PHP or Node.js (=javascript) are popular choices. But you can also go with Python, Java, C#, Kotlin, the choices are endless. - a database is typically part of the backend to store the information required by the app. It can also have various types, usually it is a relational database (SQL) or a document store (NOSQL, example MongoDB). Building such a project is quite complex. To make it easier, several languages offer "frameworks", which are collections of templates and methods that are designed to guide and help the developer, and solve the most boring parts, like login, or database connections.
15th Apr 2023, 8:11 AM
Tibor Santa
Tibor Santa - avatar
+ 1
Thank you so much. I understand better now
15th Apr 2023, 8:15 AM
Iam_IKHINE
Iam_IKHINE - avatar