Skip to main content

My Brother's Engagement...

Hey I am happy happy happy...
my brother got married...no no engaged yesterday(i.e. on 28th June 2010). We grew up so fast, the time flew by just like that. It is really amazing that he got to marry the girl he loved so much, I am really happy for him. I hope that he gets all the best in his life.
I really miss every one in my home pai, maa, dadu, nanijee, meri sab se acchi mausi jee hmm I really really miss every one. And today on 1st of july today is my mum's bday. I really wish she should be the happiest person. I know she is missing me a lot, but I miss her more than anyone else :-o. I love ya mum... I wish you many many happy returns of the day. And for my father I love you too.

-
Son

Comments

Popular posts from this blog

XAMPP: Couldn't start MySQL!

XAMPP: Couldn't start MySQL! Trying to run mysql on ubuntu 10.10 and give this vauge error "XAMPP: Couldn't start MySQL!" Try this 1. Open a terminal. 2. run this command sudo chown -hR root /opt/lampp 3. then run this sudo chmod -R 777 /opt/lampp 4. Now Restart XAMPP sudo /opt/lampp/lampp restart U are all set. And if u r getting the follwing warning after restarting "Warning: World-writable config file ‘/opt/lampp/etc/my.cnf’ is ignored" 1.Open terminal 2.Migrate to /opt/lampp/etc 3.run the command sudo chmod 755 my.cnf

Difference between is_file and file_exists

If you want to know that the argument supplied is a file or not use is_file() file_exists() will take both file and directory as input and return true if they exists. So, unless you specifically want to check if the argument passed is a file use is_file otherwise use file_exists()