diff options
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> + |