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

  1. <?php // initial startup content
  2. header("Content-type: text/html");
  3. $basetarget="main";
  4. include("html/head.std");
  5. // load our startup graphics
  6. $img1 = "graphics/pho.golf.jpg";
  7. $img1_size = getimagesize($img1);
  8. $img2 = "graphics/ob.logo.gif";
  9. $img2_size = getimagesize($img2);
  10. ?>
  11. <table border=0 width=580 height="auto">
  12. <tr align="top">
  13. <td rowspan=2 width=320>
  14. <?php
  15. print("<img src=\"$img1\" $img1_size[3]>\n");
  16. ?></td>
  17. <td>
  18. <?php
  19. print("<img src=\"$img2\" $img2_size[3]>\n");
  20. ?></td>
  21. </tr>
  22. <tr>
  23. <td>
  24. <a href="search.php3?content=member">
  25. Olive Branch Online Business Directory</a><br>
  26. <a href="search.php3?content=employer">
  27. Olive Branch's Major Employers</a><br><br><br><br>
  28. </td>
  29. </tr>
  30. </table>
  31. <?php // close up the std html tags
  32. include("html/tail.std");
  33. ?>