website/research/api.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2000-04-22 05:40:37 +00:00
<?PHP
$sitename = "The QuakeForge Project";
$pagename = "Useful APIs";
require("../parts/library.php"); // Load function library
include("../parts/head.php"); // Load the HEAD and open BODY
include("../parts/topstrip.php"); // Display top strip
include("../parts/titletable.php"); // Display main title w/ logos
?>
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
<TR valign="top">
<?php
include("../parts/menu.php"); // Import left-side menus
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
?>
<TD width="100%">
<?php
$focused = "none"; // name of focused icon
include( "../parts/topmain.php" ); // Display content top table
?>
<P>
<br><a href="http://www.opengl.org/">OpenGL - Cross platform open 3D graphics library developed by SGI.</a><br>
<br><a href="http://www.openal.org/">OpenAL - Cross platform open 3D audio library developed by Loki Games.</a><br>
</TD>
<?php
tableSpacer( 1, 9, 1, "black");
?>
</TR>
<TR>
<TD COLSPAN="4">
<?php
include("../parts/copyright.php");
?>
</TD>
</TR>
</TABLE>