Hey,
Having some difficulties with including SSI into the search_template.html page.
All my php includes are not showing up in the results page.
The code for the search_template.html is below, i did internal stylesheets to it still styles it the way i need. Its just that my php includes do not show up.
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<title>The Floral Boutique | Search Results</title>
<link rel="stylesheet" type="text/css" href="divstyle.css" />
<link rel="stylesheet" type="text/css" href="formatstyles.css" />
</head>
<body onload="if (document.getElementById('zoom_searchbox')) {document.getElementById('zoom_searchbox').focus() ;}">
<div id="container">
<div id="banner">
<?php include("banner.php"); ?>
</div>
<div id="top_navigation">
<?php include("top_menu.php"); ?>
</div>
<div id="top_navigationline"> </div>
<div id="navigation">
<?php include("left_menu.php"); ?>
</div>
<div id="content">
<h1 class="title">Search Results</h1>
<!--ZOOMSEARCH-->
</div>
<div id="footer">
<?php include("footer.php"); ?>
</div>
</div>
</body>
</html>
Thanks in advanced, if you could get back to me asap it would be great.
Can be tested here:
http://freddo.bf.rmit.edu.au/~s3233554/floral/index.html
Search for vase and click submit..
Having some difficulties with including SSI into the search_template.html page.
All my php includes are not showing up in the results page.
The code for the search_template.html is below, i did internal stylesheets to it still styles it the way i need. Its just that my php includes do not show up.
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<title>The Floral Boutique | Search Results</title>
<link rel="stylesheet" type="text/css" href="divstyle.css" />
<link rel="stylesheet" type="text/css" href="formatstyles.css" />
</head>
<body onload="if (document.getElementById('zoom_searchbox')) {document.getElementById('zoom_searchbox').focus() ;}">
<div id="container">
<div id="banner">
<?php include("banner.php"); ?>
</div>
<div id="top_navigation">
<?php include("top_menu.php"); ?>
</div>
<div id="top_navigationline"> </div>
<div id="navigation">
<?php include("left_menu.php"); ?>
</div>
<div id="content">
<h1 class="title">Search Results</h1>
<!--ZOOMSEARCH-->
</div>
<div id="footer">
<?php include("footer.php"); ?>
</div>
</div>
</body>
</html>
Thanks in advanced, if you could get back to me asap it would be great.
Can be tested here:
http://freddo.bf.rmit.edu.au/~s3233554/floral/index.html
Search for vase and click submit..
Comment