Hello. I have a small problem. In the code below the image in the logo frame is showed perfectly in firefox, but the image isn't shown in IE.
Any help would be appreciated.
Any help would be appreciated.
Code:
<?php
session_start();
$_SESSION["bizunit"] = "Main Office"; // Default selected Business Unit
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/frameset.dtd">[/URL]
<html>
<head>
<title>EFS Month to Month Update</title>
</head>
<frameset cols="20%, 80%" border=0>
<frameset rows="50, 150">
<frame name=logo src="\img\PROPERTY-FINANCE.gif">
<frame name=bizunits src="bizunits.php">
</frameset>
<frame name=details src="details.php">
<noframes>
Your browser does not support frames.
</noframes>
</frameset>
</html>