Shaxonline !

System Administration, Electronics , Technology , Gadgets and much more…

Entries for September, 2009

My favorite Instrumental Music…

I found this song a year ago on Imeem and its best of its kind I’ve listened yet. The melody is marvelous and can easily take you into relaxed state of mind. Listen it with headphones and no noises around.

http://www.imeem.com/people/iwgFlp/music/St1w-ZGV/chinese-classic-flute/
Listen this song and put your comments…

Displaying PHP code errors when not having access to php.ini

When using a shared server,one may not have access to php configuration file php.ini.Many times you will need to enable php errors, so that one can see what is the issue instead of empty page.
One can enable error reporting for php script using following code the main code -

error_reporting(E_ALL);
ini_set(”display_errors”, 1);
This will display the errors in [...]