SSI(Server Side Include) in PHP

  • September 5, 2012
  • Code
  • 0 Comments
  • SG

SSI is a Server Side Scripting Language used most commonly in many web applications. SSI will help in organizing files and templates for your application. SSI is used to include contents of another file in to a web page on the web server, similar to the include file statement we use in other server side … Continue Reading

A Quick overview on Drupal features modules

Drupal features module overview Drupal features module provides the UI and API for exporting  the various component used in drupal  like content type, Views etc. In this post we are going to see the key features. Components that can be exported by drupal are as follows, Content type CCK Views Taxonomy Menus User Roles Permissions … Continue Reading

Simple way to format currency with Javascript accounting.js

accounting.js is a tiny JavaScript library for number, money and currency formatting, with optional excel-style column rendering (to line up symbols and decimals). It’s lightweight, fully localisable and has zero dependencies. These library has settings like symbol : “$”, // default currency symbol is ‘$’ format: “%s%v”, // this controls string output: %s = symbol, … Continue Reading

Simple Quick AJAX and Usage

AJAX stands for Asynchronous Java-script and XML. AJAX is used to allow web pages to interact with server asynchronously by exchanging some amounts of data with the server. This is mainly used because it will not reload the whole part of the web page. Ajax will fetch the result through “XMLHttpRequest” object instead of  “http Request“. In a webpage … Continue Reading

CSS Compressor to Save Your Bandwidth

We can use this CSS Compressor made by CSS Drive to compress the CSS to increase loading speed and save on bandwidth as well. You can choose from three levels of compression, depending on how legible you want the compressed CSS to be versus degree of compression. The “Normal” mode should work well in most … Continue Reading