Posts archive for October, 2006

How to restore Show Desktop icon in quick launch bar?

advertisement

restore show desktop, ms win xp, win xp, microsoft window, windows xp, window xp, microsoft window xp
I think many of you might accidentally deleted the Show Desktop icon in the quick launch bar. I also did accidentally deleted the Show Desktop icon at quick launch bar. Finally i found the solution to re create or restore this Show Desktop icon in quick launch bar again.

Just follow the steps below and you will restore Show Desktop icon back in your quick launch bar:-

Continue reading How to restore Show Desktop icon in quick launch bar? »

PHP Programming: The difference between require() and include()

advertisement

php, programming, php programming, open source, php function
Many friends ask me what’s the difference between require() and include(). Here is the explaination from PHP manual.

From PHP manual:-

require() and include() are identical in every way except how they handle failure. include() produces a Warning while require() results in a Fatal Error. In other words, don’t hesitate to use require() if you want a missing file to halt processing of the page. include() does not behave this way, the script will continue regardless. Be sure to have an appropriate include_path setting as well.

Continue reading PHP Programming: The difference between require() and include() »