PHP
These days most professional commercial webites use PHP.
PHP has been in use for over 10 years and is now the most popular dynamic web programming language.
When a website requires you to sign in with your username/password, vote in a poll, download or upload something,
chances are PHP is being used. PHP is also often used for shopping carts on online stores.
PHP
is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.
PHP as a language is close to the basic programming languages like C or even JAVA.
But calling PHP a programming language would be a mistake since it was originally written in C and
then developed into a sever technology by Rasmus Lerdorf. It has since become the most popular open source
scripting language in the Internet world.
With PHP, users have many options with the variety of programming they can do.
From the simple 'Hello World' script to '
Proxy Servers' to very detailed shopping cart systems.
PHP's simplicity and maintainability separates this code from its competitors; JSP (Java Server Pages)
and ASP of Microsoft.
This has lead to most of the Internet Web Space Providers, supplying their server space with Apache (Linux) so that their
clients can work with PHP instead of WINDOWS based ASP.
PHP being a derivative of C is associated with
LINUX which also
supplies the user with another useful companion of PHP; MySQL database server.
Apart from PHP's flexibility, it is also extremely stable since it uses Linux which is a modular operating system.
This means it opens a new module for each and every function that you try to use.
In the end, you really do not want to have a server which cannot support you for 24/7.
The most intriguing feature of PHP is that it can connect to
MySQL database or SQL 2000 server using its own open
source libraries developed for the users by the users.
PHP directly interacts with the database bypassing this middle burden thereby giving you tremendous speed enhancements.
PHP is the basic tool for you to follow the path to become a web programmer and create your own, sophisticated,
nicely coded, interactive internet pages. Use PHP if you want to be in total control of your server and want to
know what really is going on.
PHP Tutorials
- A good selection of PHP tutorials from phpfreaks.com. Here you will find a large amount of step-by-step walk throughs and tutorials written by PHP Freaks authors!
PHP Resource
- PHPBuilder.com, the resource for PHP tutorials, templates, PHP manuals, content management systems, scripts, classes and more for the PHP developer.
PHP Scripts
- PHP Scripts for developers and programmers both free and commercial.
Connecting to a MySQL Database with PHP
- So you have a MySQL database but need to pull the information in to your php pages? This short tutorial will teach you how to connect to your MySQL Database.
PHP News
The PHP development team would like to announce the immediate availability of PHP 5.3.3. This release focuses on improving the stability and security of the PHP 5.3.x branch with over 100 bug fixes, some of which are security related. All users are encouraged to upgrade to this release. Backwards incompatible change:Methods with the same name as the last element of a namespaced class name will no longer be treated as constructor. This change doesn't affect non-namespaced classes. There is no impact on migration from 5.2.x because namespaces were only introduced in PHP 5.3.Security Enhancements and Fixes in PHP 5.3.3:Rewrote var_export() to use smart_str rather than output buffering, prevents data disclosure if a fatal error occurs (CVE-2010-2531).Fixed a possible resource destruction issues in shm_put_var().Fixed a possible information leak because of interruption of XOR operator.Fixed a possible memory corruption because of unexpected call-time pass by refernce and following memory clobbering through callbacks.Fixed a possible memory corruption in ArrayObject::uasort().Fixed a possible memory corruption in parse_str().Fixed a possible memory corruption in pack().Fixed a possible memory corruption in substr_replace().Fixed a possible memory corruption in addcslashes().Fixed a possible stack exhaustion inside fnmatch().Fixed a possible dechunking filter buffer overflow.Fixed a possible arbitrary memory access inside sqlite extension.Fixed string format validation inside phar extension.Fixed handling of session variable serialization on certain prefix characters.Fixed a NULL pointer dereference when processing invalid XML-RPC requests (Fixes CVE-2010-0397, bug #51288).Fixed SplObjectStorage unserialization problems (CVE-2010-2225).Fixed possible buffer overflows in mysqlnd_list_fields, mysqlnd_change_user.Fixed possible buffer overflows when handling error packets in mysqlnd.Key enhancements in PHP 5.3.3 include:Upgraded bundled sqlite to version 3.6.23.1.Upgraded bundled PCRE to version 8.02.Added FastCGI Process Manager (FPM) SAPI.Added stream filter support to mcrypt extension.Added full_special_chars filter to ext/filter.Fixed a possible crash because of recursive GC invocation.Fixed bug #52238 (Crash when an Exception occured in iterator_to_array).Fixed bug #52041 (Memory leak when writing on uninitialized variable returned from function).Fixed bug #52060 (Memory leak when passing a closure to method_exists()).Fixed bug #52001 (Memory allocation problems after using variable variables).Fixed bug #51723 (Content-length header is limited to 32bit integer with Apache2 on Windows).Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3). For users upgrading from PHP 5.2 there is a migration guide available on http://php.net/migration53, detailing the changes between those releases and PHP 5.3. For a full list of changes in PHP 5.3.3, see the ChangeLog.
2010-07-22
|