PHP programming language

Caching Your PHP Application

PHP
Thoughts on caching a PHP application on high visited websites.

Filed under:

Invoking a PHP Function Across The Web Via AutoIt

AutoIt
This is a short, yet easy tutorial to wrap your head around. It involves calling a PHP function remotely through AutoIt.

Filed under:

A Look At Magic Methods In Php

PHP logo
Here's a look at the special magic methods in PHP and how they can be utilized in your object oriented programming efforts.

Filed under:

Ugly PHP If Code

PHP
Making code ugly is no fun to read nor maintain. I seen quite a bit of web page scripting code in PHP the last few years. One example that I see over and over again that is just terrible, involves generating HTML markup on the fly based on boolean conditions. Here we look at two common methods and another that is a bit more readable.

Filed under:

Building A PHP Proxy Judge

PHP
Sometimes the best way to educate yourself about an unknown subjects is to learn by doing. This weekend I did my own version of a Facebook Hackathon by creating a proxy judge.

Filed under:

Fixing PHP's Explode Function

PHP logo
When you perform a PHP explode() on strings, there is a problem in the array items that are returned. Follow along as we look at the subtle glitch in this function, and how we will go about to fix it.

Filed under:

Supporting Multiple Submit Buttons In PHP

PHP
Your web designer has come up with a nice HTML form layout that she has worked on for a few days. In it, you see there are multiple buttons in the form that you need to handle. What do you do?

Filed under:

How To Setup A WAMP Development Environment

Apache HTTP logo
This article will discuss in detail how to setup a local Windows Apache, MySQL, and PHP (WAMP) development environment.

Filed under:

A PHP Image Resizer Class

PHP
Looking for a utility to resize your images? Here's a PHP class leveraging the GD extension to make your life easier.

Please make sure that you have the GD 2 library installed on your server. This is a PHP extension that will allow you to do image manipulation.

The code below handles manipulation of JPEG, GIF, and PNG image file types only.

Filed under:

Php Key Array Counting

Test yourself in this quiz of your knowledge of counting PHP array elements..

Filed under: