frameset code:
CODE
<frameset rows="*" cols="200,*" frameborder="NO" border="0" framespacing="0">
<frame src="leftframe.php" name="leftFrame" scrolling="NO" noresize>
<frameset rows="*,80" frameborder="NO" border="0" framespacing="0">
<frame src="mainframe.php" name="mainFrame">
<frame src="bottomframe.php" name="bottomFrame" scrolling="NO" noresize>
</frameset>
</frameset>
<frame src="leftframe.php" name="leftFrame" scrolling="NO" noresize>
<frameset rows="*,80" frameborder="NO" border="0" framespacing="0">
<frame src="mainframe.php" name="mainFrame">
<frame src="bottomframe.php" name="bottomFrame" scrolling="NO" noresize>
</frameset>
</frameset>
leftframe.php code:
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
font-family: Arial, Helvetica, sans-serif;
color: #0000FF;
background-color: #CCCCCC;
font-size: 11px;
}
h1 {
font-size: 14px;
}
-->
</style>
</head>
<body>
Please use the controls below:<br /><br />
<form action="mainframe.php" method="post" name="add_nodes" target="mainFrame">
<h1>Add a node:</h1>
<input name="node_name" type="text" /><br />
<input name="submitted" type="hidden" value="true" />
<input name="action" type="hidden" value="add" />
<input name="Add" type="submit" value="Add" />
</form>
</body>
</html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
font-family: Arial, Helvetica, sans-serif;
color: #0000FF;
background-color: #CCCCCC;
font-size: 11px;
}
h1 {
font-size: 14px;
}
-->
</style>
</head>
<body>
Please use the controls below:<br /><br />
<form action="mainframe.php" method="post" name="add_nodes" target="mainFrame">
<h1>Add a node:</h1>
<input name="node_name" type="text" /><br />
<input name="submitted" type="hidden" value="true" />
<input name="action" type="hidden" value="add" />
<input name="Add" type="submit" value="Add" />
</form>
</body>
</html>
Can anyone see what I'm doing wrong?
Cheers.