Saturday, December 4, 2010

NETTUTS.com - Creating a Twitter OAuth Application

In a recent post to NETTUTS.com, there's a new tutorial that will walk you through the creation of a basic Twitter client that uses their OAuth system for authentication. All of the code is provided so you can follow along. OAuth can be a tricky concept to wrap your head around at first, but with the Twitter API now requiring its use, it is...
read more...

Saturday, October 30, 2010

Php Date Format

Php Date FormatDate time formatting in PHPMany scripts written in php need date and time function . PHP has many predfined date formats and you can also customized it as per your need .Here are some of the date format examples and additional details for php.ExamplesVariable $today has different formats as we set the format types in the following...
read more...

Sending Email with PHP mail() object

Sending Email with PHP In this lesson of the PHP tutorial, you will learn... 1. To send emails using PHP's built-in mail() function. 2. To send email using PHPMailer, a PHP extension with more features than mail(). mail() PHP has a built-in mail() function that makes it easy to send email. Mail Parameters Method Description To The address...
read more...

Monday, October 25, 2010

Debugging techniques for PHP programmers

Debugging techniques for PHP programmersUsing print statements, error reporting, and the PHPeclipse plug-inTyler Anderson (tyleranderson5@yahoo.com), Freelance writerTyler Anderson recieved both his B.S. in Computer Science in 2004 and his M.S....
read more...