How To Install AWS SDK v2 Using PEAR

Author: , August 3rd, 2013

http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/installation.html#installing-via-pear http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/configuration.html

How To Find the Complete Page URL in PHP

Author: , October 25th, 2012

How To Create Public and Private ShortCodes in WordPress

Author: , October 22nd, 2012

Add this to your theme’s functions.php file:

How To Validate Email Addresses in PHP

Author: , October 21st, 2012

How To Create a Code Block in PHP for Error Handling

Author: , October 19th, 2012

The do/while statement is sometimes used to break out of a block of code when an error condition occurs. For example:

Because the condition for the loop is false, the loop is executed only once, regardless of what happens inside the loop. However, if an error occurs, the code after the break is not […]

How To Create a New Directory in AWS S3

Author: , October 10th, 2012

How To Get Smarty html_radios To Display An ID

Author: , October 1st, 2012

Add the parameter label_ids=true. For example:

How To Calculate the Next Anniversary Date in PHP

Author: , September 12th, 2012

How To Prevent Fatal Error Cannot Redeclare Function In PHP

Author: , August 8th, 2012

How To Determine HTTP Protocol Using PHP

Author: , May 11th, 2012

$protocol = (!empty($_SERVER[‘HTTPS’]) && $_SERVER[‘HTTPS’] !== ‘off’) ? “https:” : “http:”;