Heroes of Newerth Beta Keys give away
September 30, 2009
HoN is cool and i really like it
i found a link that will give Hon Beta keys
i got one from
http://honbetakeys.blogspot.com/
goodluck to you if you plan to join.
-golden arches
where to download free psp games
January 11, 2009
i’ve found this site www.free-pspgames.net which lets you download free games free, no need to join and pay other sharing site.’
enjoy
php number format
November 28, 2008
$var = 4938509.958
echo number_format($var, 2, ‘,’, ‘.’);
output = 4,938,509.96
one liner if statement
October 24, 2008
$variable = ($x == TRUE)? 'the variable is true' : 'the variable is NOT TRUE';
Friendster migrated to wordpress 2.6
September 6, 2008
In the Word Camp Philippines last september 07 2008 Bloggie announced that Friendster are hiring and in need for developers. He said that the devs will be responsible for migrating every single blog in friendster from typepad to wordpress. I didn’t actually expect that i can see wordpress friendster blog right away, i thought that they are still looking for developers to do it.
count days between two dates
August 11, 2008
//function that will count days
function countdays($date1, $date2){
$days = abs(strtotime($date1)-strtotime($date2)) / 86400;
return $days;
}
//lets assign values
$date1 = '2008-08-17';
$date2 = '2008-08-12';
echo countdays($date1, $date2); //executes our function
reload your page with javascript
August 11, 2008
document.reload(true);
mysql date to javascript date
July 31, 2008
<?php
echo date('m/d/Y', strtotime('2008-07-31'));
?>
trying to use your dates in mysql in javascript? use this code in your php page.
get URL String using javascript
July 31, 2008
url = document.location; document.write(url);