<link rel="stylesheet" href="style/angiesartlogo.png" type="text/css" media="screen" />
How can I fix this?
Full code:
<?php
session_start();
if(isset($_SESSION["manager"]))
{
header("location: index.php");
exit();
}
?>
<!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/html; charset=utf-8" />
<title>Store Home Page</title>
<link rel="stylesheet" href="style/angiesartlogo.png" type="text/css" media="screen" />
</head>
<body>
<div align="center" id="mainWrapper">
<?php include_once("../template_header.php");?>
<div id="pageContent">
<div align="left" style="margin-left:24px;">
<p>Hello store manager, what wold you like to do today?</p>
<p><a href="inventory_list.php">Manage inventory</a></p>
<p><a href="#">Manage Blah Blah </a></p>
</div>
</div>
<?php include_once("../template_footer.php");?>
</div>
</body>
</html>

New Topic/Question
Reply



MultiQuote




|