Work with SVN

Hi friends,

Now a days maintaining backup files very difficult with small changes in the file. Example If we taken file and backup it and done few changes in that file. After few days if we look into that file,it is difficult us to identify at which part we changed in the new file when compare to old backup file.

So, to avoid such types of difficulties we can implement SVN(Subversion).

(more…)

Useful Information about PHP

Hi friends, Below things are very useful when we develop websites using php code. We most know about these things. 1) To check pear package is installed in your server or not. 1234<?php require_once ‘System.php’; var_dump(class_exists(’System’)); ?> Note : It will give information about pear package in our server.