BCS website placeholder and testbed (circa Nov 2003)
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.

14 lines
443 B

  1. <?php // php test script
  2. header("Content-type text/html");
  3. $img1 = "graphics/BCS_Logo.gif";
  4. $img1_size = getimagesize($img1);
  5. print("<html><head>\n");
  6. print("<link rel=stylesheet href=\"styles/bcs.css\" type=text/css>\n");
  7. print("<base target=\"_top\">\n");
  8. print("</head>\n<body>\n");
  9. print("<img align=left src=\"$img1\" $img1_size[3]>\n");
  10. print("<br><br><p>Check back later for further developments...\n");
  11. print("</body></html>\n");
  12. ?>