|
If you are a web developer you’ve probably heard of PHP. It’s been going since 1994 with many improvements being made.
What distinguishes PHP from something like client-side Javascript is that the code is executed on the server. If you were to have a script similar to the above on your server, the client would receive the results of running that script, with no way of determining what the underlying code may be. You can even configure your web server to process all your HTML files with PHP, and then there’s really no way that users can tell what you have up your sleeve. What can PHP do? At the most basic level, PHP can do anything any other CGI program can do, such as collect form data, generate dynamic page content, or send and receive cookies. Perhaps the strongest and most significant feature in PHP is its support for a wide range of databases. Writing a database-enabled web page is incredibly simple. The following databases are currently supported:
(Source: PHP Manual, © 1997, 1998, 1999, 2000 by the PHP Documentation Group)
If you are used to ASP then you will find PHP similar in its operation. Also see the PHP configuration window (pop up)
Visit PHP
to learn more and download the latest version.
http://www.php.net/downloads.php install as you would a regular Windows program.
|