Formerly referred to as “Personal Home Page Tools,” PHP Hypertext Preprocessor is an open source server side scripting language. It is very popular for developing web based software applications because programmers can use it easily to create web pages with dynamic content that interact with databases.
1. Submitting forms using PHP cURL
A tutorial on how to submit (POST) forms using PHP cURL. This technique proves to very useful when implementing payment gateways for e-commerce websites.

Source
2. PHP cURL Functions Tutorial
cURL is a library which allows you to connect and communicate to many different types of servers with many different types of protocols. Using cURL you can download files, upload files, login to other websites and submit forms.

Source
3. Handling File Uploads in PHP
Easy to follow tutorial on handling file uploads PHP.

Source
4. Truncate Long String along Word Boundaries
Use this simple piece of code to truncate a long text string along word boundaries. Very useful for displaying a summary with specified number of words from a long text.

Source
5. PHP Pagination Script
PS_Pagination is a flexible and easy to implement PHP pagination script which can help you split large result sets over multiple pages.

Source
6. PHP’s FTP Functions Tutorial
Learn to use PHP’s FTP functions to create directories and files and change file mode. Also learn how to write data to configuration files in a more secure way.

Source
7. Prevent Duplicate Form Submission
Learn how to use PHP sessions to prevent duplicate form submission or re-submission.

Source
8. PHP MySQL Login Script
Login and user authentication is the most common feature in any dynamic website. Read this article to learn how to develop a login module of your own.

Source
9. Problems while Using PHP Sessions
Lists some of the common problems faced while using sessions in PHP and how to deal with them.

Source
10. Organize Project through Include Files
A tutorial on how to use a include files to better organize your PHP project.

Source