/**
* Increment the number
*
* Example of a simple function to increment the value of a number
*
* @param integer $i - the number to be incremented
* @return integer - the incremented number
*/
function uppity( $i ) {
$i++;
return( $i );
}