Skip to main content

Nobody's Home - Avril

I couldn't tell you why she felt that way,
She felt it everyday.
And I couldn't help her,
I just watched her make the same mistakes again.

What's wrong, what's wrong now?
Too many, too many problems.
Don't know where she belongs, where she belongs.
She wants to go home, but nobody's home.
It's where she lies, broken inside.
With no place to go, no place to go to dry her eyes.
Broken inside.

Open your eyes and look outside, find the reasons why.
You've been rejected, and now you can't find what you left behind.
Be strong, be strong now.
Too many, too many problems.
Don't know where she belongs, where she belongs.
She wants to go home, but nobody's home.
It's where she lies, broken inside.
With no place to go, no place to go to dry her eyes.
Broken inside.

Her feelings she hides.
Her dreams she can't find.
She's losing her mind.
She's fallen behind.
She can't find her place.
She's losing her faith.
She's fallen from grace.
She's all over the place.
Yeah,oh

She wants to go home, but nobody's home.
It's where she lies, broken inside.
With no place to go, no place to go to dry her eyes.
Broken inside.

She's lost inside, lost inside...oh oh yeah
She's lost inside, lost inside...oh oh yeah

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()