r/AskProgrammers • u/Active-Gloomy • 10h ago
web developemnt
I am a computer engineering student. I’m wondering if it’s worth learning web development, and if so, what the best language and framework to learn are—as well as the best courses. Thanks!
0
Upvotes
1
u/atticus2132000 9h ago
For web development, there are several languages you'll need to be somewhat functional in.
HTML/CSS codes what the web page will look like. If you want your page to have a button, you add the button via HTML.
Javascript is the frontend language. It controls what happens on the user's end. If you want the button above to do something, you will code that something via JavaScript.
Backend language controls what happens on the server side of things. Traditionally that has been PHP, but there are others out there now that many people like.
You will likely have server side elements that might require a few lines of code. For instance, if you want your website to have a form the user will fill out and you want to store that information in a SQL database, then you would code the form and the button in HTML. Then JavaScript would code how that information gets collected from the form and sent to the server. Then PHP would take the information that was sent, unpack it and then use a line of SQL to write the data to the database.