diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-01-29 17:54:06 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-01-29 17:54:06 +0000 |
commit | 57f02306e09ee78802bab35f8dd599372c46a31a (patch) | |
tree | 0c84b800d4bda5e2155cc3a9b0d5459f34ed9fe9 /php/example2.php | |
parent | a15a07a5797afd145348c29577b557c116228966 (diff) |
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'php/example2.php')
-rw-r--r-- | php/example2.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/php/example2.php b/php/example2.php new file mode 100644 index 0000000..7b36a5f --- /dev/null +++ b/php/example2.php @@ -0,0 +1,23 @@ +<?php + include_once("leftbar.php"); +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<link rel="StyleSheet" href="example.css" type="text/css"/> +<title>Example 2</title> +<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> +</head> +<body> + +<h1>Example 2</h1> + +<div class="leftbar"> +<?php LeftBar('leftbar.txt'); ?> +</div> + +<p>Welcome to example page two.</p> + +</body> +</html> + |