PHP: Server Side Programming
PHP stands for PHP: Hypertext Preprocessor. It is called a recursive acronym, because the acronym is contained within the acronym itself. Kind of silly, but the real question is, what is it used for and why would you use it? PHP is a server side programming language - meaning that it will never run in your browser. That doesn't mean that it has nothing to do with a web page, however. Like all server side languages, its job is to process a file on behalf of the web server so that the server can send to the browser only what it can handle; generally HTML, style sheets, and javascript. Several other server side technologies like ASP, JSP, and Perl (to name but a few) do the same thing. There are several reasons to use server side languages like PHP. They can access databases on the website, so all data for an application is stored in one place. They enable algorithms to be hidden: anything sent to the browser can be read by a savvy user, but algorithms written in PHP are never sent to the browser - only their output. They also ease maintenance: update the PHP code on your website, and all your users instantly get the new functionality; there is nothing to distribute or browser caches to clear. As a programmer, there are several advantages to PHP as a general purpose language:
There are other reasons why PHP is a good choice, but these are the ones I consider most important. |
|
|
|
Something wrong with this page or this site? Let the webmaster know by clicking HERE |
|
This website designed, implemented, and maintained by Corey Dulecki
© 2009-2012, Corey's Consulting LLC |