Server-side Include

From Market Ruler Help
Revision as of 18:46, 6 October 2009 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A Server-side include is a means by which portions of a web page or web file is concatenated from another file using a Scripting Language such as PHP, ASP, or Java.

Oftentimes, this is available directly in the web server itself, via an extension.

Example using PHP

<?php
include 'header.php';
?>

Example in Active Server Pages

<!-- #include file="header.asp" --> 

Example using JSP

<!-- #include file="header.jsp" --> 

Related

For more info