Saturday, June 20, 2009

Friday, June 19, 2009

top 10 nba finals moments



Check how many moments the la lakers have in the top 10. ;)

kobe hanging, 3 points from fisher? hmmm

Sunday, June 14, 2009

champions are champions!!!!!!!!



you better recognise talent when you see it!!!!!!!!

kobe, a star. its undeniable. alot of people do not like him because they think that he is a show off but, he's got talent that is obvious. he uses it for his team which is the important thing. his team won.

to the greatest, la lakers!!!!!!!!!!!

Friday, June 12, 2009

dont know what the beating is for but she get some good lick!!!!!!!!

check it out: http://abclocal.go.com/kgo/video?id=6858547

Usain bolt's t-shirt says what?????????

here is the link: http://www.fotoglif.com/f/cbemyf1q3eyu

well, i didnt see what the shirt says when i looked at it initially. i was told to turn my head side ways to see what the shirt says. i thought it was come chinese and asked the question "who translated it for him?".

i dont know. who says he knows what the shirt is saying?

im not going to blame him because i dont no whether or not it was deliberate yes or no.

what do you think?

Thursday, June 11, 2009

refresh/reload parent mask

i used this function to reload a parent mask in p4a 3

a parent mask would be one that calls another mask (the child). so the function would be in the child mask.

function doReloadParentMask(){
$p4a = p4a::singleton();
//$parent = p4a::singleton('product');
//$parent->destroy();
$p4a->masks->product->destroy();
$p4a->openMask('product');
}

Wednesday, June 10, 2009

how to replace extra space in a database/sql column

use the replace function:

update table_name
set column_name = replace(column_name, ' ', ' ');

the function takes the column name and replaces two occurrences of spaes with one;