| | Date | Title | Author | Hits |
| | 06-29-11 | | Alejandro Gervasio | 36195 |
This PHP programming tutorial focuses on how to utilize the Liskov Substitution Principle (LSP) to develop better OOP applications. |
| | 06-22-11 | | Codex-M | 62140 |
Facebook comments are a great way to optimize your site for social media and add a level of user-engagement to you site. Quality website comments can increase your website's credibility, as well as its traffic. This tutorial will teach you how to use Facebook's API Connect to integrate comment boxes on your website in a few simple steps, utilizing a little PHP and some elbow grease. |
| | 06-15-11 | | Alejandro Gervasio | 18977 |
In this first part of a programming series, you will learn how to create segregated interfaces to perform specific tasks in PHP. In this instance, you will be using them to iterate through arrays. |
| | 06-08-11 | | Alejandro Gervasio | 25714 |
In this programming tutorial, you will learn how to create a simple caching system using a PHP segregated interface. |
| | 06-01-11 | | Alejandro Gervasio | 24066 |
Segregated interfaces aren't anything new in PHP. Simply put,a segregated interface is a regular interface whose contract provides implementers with the functionality to perform one or more specific tasks. In this second part of a series, we will be using them to create a registry system. |
| | 05-11-11 | | Codex-M | 30325 |
PHP array string functions are some of the most important functions you need to know in PHP if you want to become an efficient programmer. In this tutorial, we will look at the most commonly used array string functions, including (but not limited to) count, push, in_array, asort, and pop. |
| | 05-04-11 | | Codex-M | 81644 |
In this article, we will look at seven great, lightweight PHP frameworks. Each framework has been tested for speed and useability. We will be looking at the following frameworks: Cakephp, CodeIgnitor, Symfony, yii, RainFramework, Doophp, and Kohana. |
| | 04-27-11 | | Codex-M | 80411 |
In this programming tutorial, we will look at different methods to redirect URLs in PHP. Specifically, we will be examining 301 URL redirect methods via code, meta refresh and the use of PHP header location settings to invoke a redirection. |
| | 04-20-11 | | Codex-M | 36479 |
PHP GET and POST are predefined global and associated array variables used for retrieving user submitted information passed using HTTP GET and HTTP POST methods. They are mostly used with PHP web form applications where you need to interact with your user input. This tutorial is a complete guide to using PHP GET and POST functions with illustrative examples and security considerations. |
| | 04-13-11 | | Alejandro Gervasio | 10145 |
In this final part of our series on external iterators (loops) in PHP, we will look at how to retrieve data using the ArrayIterator SPL class. |
| | 04-06-11 | | Alejandro Gervasio | 9542 |
Let’s face it: building custom external iterators is one of those things that we, as PHP developers, have to tackle sooner or later. Whether it comes to iterating over database result sets or traversing plain array elements, external iterators are powerful, reusable structures that permit you to develop more efficient object-oriented applications. This is the third part in our series on external iterators in PHP. |
| | 03-31-11 | | Alejandro Gervasio | 12821 |
If you, as a PHP developer, are looking for an approach that lets you build traversable classes that stick more strictly to the Single Responsibility Principle, then maybe it is time to consider the functionality provided by external iterators. |
| | 03-21-11 | | Alejandro Gervasio | 15024 |
In this first part of a short tutorial series, you will learn how to implement external iterators in PHP using OOP (Object Oriented Programming). This is useful when you want to construct easily traversable classes. Keep reading to learn more! |
| | 03-02-11 | | Codex-M | 30645 |
Validating URLs is important to form handling and PHP data processing. Currently there are numerous solutions for validating URLs. This article will take a look at some of the most commonly used methods of validating URLs in PHP: the Regex method and the PHP built-in Filter_validate_URL. |
| | 02-16-11 | | Alejandro Gervasio | 19623 |
In this third part of the series, I develop the domain layer of a sample blog application. In this case, for the sake of simplicity, the domain layer will be able to fetch, save, and delete blog post entries from the underlying storage layer. |