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

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