Basic frameset page is: (standard HTML)
<html>
<head>
<title>World Image Organisation</title>
</head>
<frameset rows='100,*' framespacing='0' frameborder='0' border=0>
<frame frameborder='0' framespacing='0' src='heading.html' noresize scrolling='no' name='heading'>
<frame frameborder='0' framespacing='0' src='intro.php' name='main'>
</frameset>
<noframes>Your browser does not accept frames.</noframes>
</body></html>
This calls a heading page with Flash panel: (standard HTML)
The main page includes a Javascript nav menu down left side and I want to include PHP code and queries in the body of the page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<title>World Image Organisation</title>
<link rel=stylesheet type=text/css href=styles.css>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
<STYLE>
A.ssmItems:link {color:black;text-decoration:none;}
A.ssmItems:hover {color:black;text-decoration:none;}
A.ssmItems:active {color:black;text-decoration:none;}
A.ssmItems:visited {color:black;text-decoration:none;}
//-->
</STYLE>
<SCRIPT SRC='ssm.js' language='JavaScript1.2'></SCRIPT>
<SCRIPT SRC='ssmItems.js' language='JavaScript1.2'></SCRIPT>
</head>
<body>
<!-- I want to include PHP coding here-->
<table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'>
<tr><td width='30' bgcolor='black'></td>
<td width='*'><br><h1>Search World Image ...</h1>
</td>
<td width='150' bgcolor='#E5E5E5'>
</td>
</tr></table>
</body>
</html>
Is there something in the doctype info that needs to be changed?
I am saving this page as search.php