Difference between revisions of "Server-side Include"
From Market Ruler Help
(Created page with '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 Jav…') |
(No difference)
|
Revision as of 18:45, 6 October 2009
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.
Contents
Example using PHP
<?php include 'header.php'; ?>
Example in Active Server Pages
<!-- #include file="header.asp" -->
Example using JSP
<!-- #include file="header.jsp" -->