Olive Branch MS Chamber of Commerce (circa Oct 1999)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

34 lines
800 B

<?php // initial startup content
header("Content-type: text/html");
$basetarget="main";
include("html/head.std");
// load our startup graphics
$img1 = "graphics/pho.golf.jpg";
$img1_size = getimagesize($img1);
$img2 = "graphics/ob.logo.gif";
$img2_size = getimagesize($img2);
?>
<table border=0 width=580 height="auto">
<tr align="top">
<td rowspan=2 width=320>
<?php
print("<img src=\"$img1\" $img1_size[3]>\n");
?></td>
<td>
<?php
print("<img src=\"$img2\" $img2_size[3]>\n");
?></td>
</tr>
<tr>
<td>
<a href="search.php3?content=member">
Olive Branch Online Business Directory</a><br>
<a href="search.php3?content=employer">
Olive Branch's Major Employers</a><br><br><br><br>
</td>
</tr>
</table>
<?php // close up the std html tags
include("html/tail.std");
?>