The directory/folder password protection or authentication systems offered by the Apache Web Server are probably the most important use of .htaccess file.We can easily make a directory password protected (or multiple directory) of a website which require a username and password to access.Password are also encrypted using one of the best encryption methods available which…

Apache Server Configuration File Apache has a great number of directives which you can set and manipulate in order to set your server’s behavior.   Every server administrator will often update some of the directives, it all depends on their particular needs. Every person working with the Apache server is likely to encounter these directives.…

A .htaccess (hypertext access) file is a configuration file for use on web servers running the Apache Web Server.It is a directory-level configuration file,as the name .htaccess reflects – allow per-directory access control, e.g requiring a password to access the content.   When a .htaccess file is placed in a directory or folder, then the… (2 comments)

jQuery is simply a way of Write less, do more.It is designed to change the way that you write JavaScript. jQuery is a fast and small JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid and simple/easy web development. jQuery is a cross-browser JavaScript library designed to simplify the…

  The main difference between MyISAM and InnoDB is that InnoDB supports transaction. InnoDB supports some newer features: Transactions, row-level locking, foreign keys. InnoDB is for high volume, high performance.   MyISAM is of course the default table type i’m MySQL Some says MyISAM is fast and some says that InnoDB is ? Let me…