mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-19 07:00:49 +00:00
If this doesn't work....
This commit is contained in:
parent
bb58cde91e
commit
45fdbe632d
2 changed files with 36 additions and 1 deletions
|
@ -75,7 +75,7 @@
|
|||
|
||||
menuSectionHeader( "Search", 'white', $menuHeadColor, $menuBgColor );
|
||||
echo '<CENTER><FONT size="-2">' .
|
||||
'<FORM action="search/" method="POST">' .
|
||||
'<FORM action="search.php" method="POST">' .
|
||||
' <SELECT name="type_of_search">' .
|
||||
' <OPTION value="bugs">Bug Tracking</OPTION>' .
|
||||
' <OPTION value="lists">Mailing Lists</OPTION>' .
|
||||
|
|
35
search.php
Normal file
35
search.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Search";
|
||||
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>
|
||||
This page is still under construction. Please check
|
||||
back later.
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
Loading…
Reference in a new issue