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
[sourcecode language=php]
$var = 4938509.958
echo number_format($var, 2, ‘,’, ‘.’);
output = 4,938,509.96
[sourcecode]
one liner if statement
October 24, 2008
[sourcecode language=php]
$variable = ($x == TRUE)? ‘the variable is true’ : ‘the variable is NOT TRUE’;
[/sourcecode]
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);
Hello world!
July 31, 2008
Here we will compile our codes. created by us or founded in the web.
all rights are reserved to their rightful owners. This site is not affiliated to any contents posted here. use it at your own will.
its now updated