Posts Tagged linux apache

Web Programming

Web programming is an increasingly large branch of programming. It deals with creating websites. But it’s far more than just simple HTML code. From server-side languages such as PHP, to layout languages like CSS, to large all-in-one web frameworks such as Django, web programming has a great deal of subfields.

One important, although less used today, set of programs used to build websites is the LAMP stack. This stands for Linux, Apache, MySQL, and PHP, the four main tools used to create the website. Linux is the operating system that everything else runs on, Apache is the web server that gives HTML pages to the web browser, PHP is the programming language that generates the HTML, and MySQL is the database server that stores information about the website. The LAMP stack is still very important because web frameworks, such as WordPress, are often based off of it. However, for most web sites, it’s too low level, and using a framework makes things easier and quicker.

There are many different frameworks, which is a mixed blessing. Because of the variety of frameworks, it has become very easy to create a website that you want. For example, to create a blog, all you have to do is download WordPress onto a web server and begin writing posts. A forum site is as simple as using phpBB. A wiki just needs MediaWiki in order to function. The drawback of this, however, is that there’s a lot to learn in order to be an effective web programmer. Different frameworks often have very little in common, so in order to stay current with your knowledge, you need to be constantly learning, even more so than for application programming.
Read the rest of this entry »

, , , ,

No Comments