Infolinks: Another Way to Monetize Your Blog
Infolinks is an in-text advertising program. Infolinks is a share revenue program and it claims to be the industry’s highest revenue share, so that publisher can keep most of the advertising revenues.

Twitter: Earn Money While You Tweet
Do you enjoy tweeting? If you do and you have a lot of followers, this may be a good news for you. You can earn money from your tweets!
PHP: Format integer into number of decimal places
Previous I have written an article about formating interger into number of decimal places in Java. The main reason to store money value in integer in to prevent loss in precision. For example the actual value for 12.33 in float could be 12.3333333333...; while 1233 in integer is always 1233.
Today I will be showing you the same code but in PHP language. I know you can do the same thing with PHP's number_format(), but you will need to cast the integer into float first before past the money value into the number_format() function. Therefore there are possibles of lose in precision.

