An Introduction to PHP's Basic Concepts
PHP is a reflective programming language originally designed for producing dynamic web pages. It is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
Salient Features of PHP - Hypertext Preprocessor
- Support for object-oriented programming
- The PHP Data Objects extension, which defines a lightweight and consistent interface for accessing databases
- Performance enhancements
- Better support for MySQL
- Embedded support for SQLite
- Integrated SOAP support
- Data iterators
- Error handling via exceptions
How to get PHP setup?
You can download PHP from any of the members of the PHP network of sites. These can be found at »PHP.Net You can also use anonymous CVS to get the absolute latest version of the source.
PHP can compatible with IIS and Apache.
Please visit this blog again to know further updates about PHP.
How PHP is related with MySQL?
Both MySQL and PHP are open source.PHP and MySQL combine to be an easy yet powerful way to create dynamic web pages that actually interact with your visitors. PHP contains various methods to connect to MySQL.
PHP Classes and Object:
PHP's handling of objects has been completely rewritten, allowing for better performance and more features.
