If the website owner want to know the complete details about the site visitors and want to view the statistics about visits, then a free solution provided by google named as Google Analytics. It generates detailed statistics about the visitors to a website. It is the widely used websites.GA (Google Analytics) can track visitors…
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…
PHP sends data from server to client/browser as soon as it is ready – this response might be line by line or by code blocks.Output buffering enables you to store up your output and send it when you are ready to go or to not send it at all, if you decide. or simple…
Force file download using PHP algorithm It is very frustrating to click on a link to a document you want to read, and then have to wait for it to download and finally it open on your computer/browser, but you had expected it to download. It is mainly for some file types as (eg:…
The header() function sends a raw HTTP header to a client or browser or simply we can say it tells browser what type of content,it have to show. When a request sent from server to client/browser the HTTP informations has been sent to browser,The HTTP information may be small or large depends on the page…