Actually, I did what I did for the sake of simplicity in an already complex situation.
I had a site hosted by godaddy and was using VAFS. We experienced two episodes of our data from VAFS being unavailable for extended periods of time, leaving us dead in the water. I stumbled across phpVMS. After making inquiries about hosting, I chose one that had been recommended, installed phpVMS and was astounded to see that it worked, “out of the box”.
That left me with my original on one server and phpVMS on another. Since the original server had a forum and other resources, and I also used some external sites, I opted for the simplest possible solution. an upper frame to keep my navigation and a lower one for content.
Essentially, this is the upper frame (less the menu bar):
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Omega-Air</title>
<style type="text/css">
<!--
body,td,th {
color: #0000CC;
font-family: Times New Roman, Times, serif;
}
body {
background-color: #6699FF;
}
-->
</style>
</head>
<body>
<div align="center">
{menu bar code here}
</div>
<p align="center">
{Logo and clock code here}
</p>
<hr align="center" />
</body>
</html>
The only problem is that frame must have sufficient height to display the greatest height of the drop down menu.
The bottom frame, was even simpler:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Omega-Air Virtual Airlines</title>
<style type="text/css">
<!--
body,td,th {
color: #000099;
font-family: Times New Roman, Times, serif;
}
body {
background-color: #6699FF;
}
-->
</style>
<style type="text/css">
<!--
.style2 {color: #0000CC}
-->
</style>
</head>
<body>
<p align="center"> </p>
<p>
<iframe width='100%' height='1200px' frameborder='5' src='http://www.fspirep.us//phpvms/index.php'></iframe>
</p>
</body>
</html>
Since I was up to my eyeballs in adding aircraft, airports, routes and things to get our pilots back to where they could fly, I needed an instant web site, even if it wasn’t elegant. :
When things settle down, I’ll consider other methods. BTW, the only modification I made to phpVMS, was to change the graphics to match the rest of the site.