+ 4
For developing website which programming language should I learn.??
I am entrepreneur so I would like to learn this skill .
6 Respostas
+ 3
Please refer the guide to language selection in FAQ page:
https://www.sololearn.com/faq
+ 2
For developing websites you should know about the front end and back end languages
for front end : - HTML, Javascript, CSS
for back end : - PHP, jQuery, Node.js
+ 1
https://code.sololearn.com/WDPflfKKTwVK/?ref=app
https://code.sololearn.com/WywHbYWu1173/?ref=app
https://code.sololearn.com/W5vTxD5t5TKh/?ref=app
https://code.sololearn.com/W5HVA2qvQ434/?ref=app
Check these code. Here you can get languages as well as you can know how to develop Website.
+ 1
1. Html
2. CSS
3. Javascript
4. SQL
5. PHP
Please follow the same sequence as given above.
This much would be more than enough but this is also not the end, there is much more in web development but I won't go that deep.
+ 1
I would say it would be important to learn Html, java script, css, sql, and php. I would also recommend you learn basic web security like about vulnerabilities and how to protect against them. I think learning Pen-testing would be very useful. The other thing you should learn about is hosting.
0
I've written a deployed website in Python using the Flask framework but there are alot of choices.
Web development is usually divided up into three pieces.
Server side code does things like retrieve data from a database, generate web pages based on that data, provide URL endpoints to run specific functions in an API, etc. That could be nearly any language. This done in .NET (C#), as well as PHP, Java, Javascript (Node.JS), Python, and others.
The second piece is the front end. This is typically written in HTML with CSS, but Javascript is used for any sort of complexity. You can do basic forms and display fields without it, but you will likely always use a combination of HTML/CSS/Javascript. There are a bunch of frameworks like Angular, Vue, and React but those are all built on Javascript. If you really want a good foundation start with the basics.
Finally, the third piece is the database itself. This can be SQL, NoSQL, or others. SQL is a good place to start.
Honestly I wouldn't learn a language to build a website. There are plenty of easy build website tools that will do just fine for an entrepreneur to start a business.
Where you would want to learn web development would be to build specific applications in the web or functionality you don't get with a typical content management system. Do yourself a favor. Start with Python and learn the concepts such as loops, functions, variables, etc. Then pick another language (I recommend C++, but C# and Java are good as well) and learn console development. Finally then you can figure out where you want to specialize (whether that be web, desktop, server, etc.)