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.
 
 
 
 

33 lines
1.2 KiB

<html>
<head>
<title>Olive Branch, MS</title>
</head>
<frameset rows="50,*" border="0">
<?
include("bsearchmain.php3");
$result = bsearch_main($category, $wordsearch, $contactsearch, $wordoption, $contactoption);
if($result)
{
$total_rows = pg_numrows($result);
if($linesperpage <= 0) $linesperpage = $total_rows;
$total_pages = (($total_rows - 1) / $linesperpage) + 1;
settype($total_pages, "integer");
pg_freeresult($result);
}
$blank_args = "bsact=" . $bsact;
$blank_args = "&begin=" . $begin;
$blank_args .= "&page=" . $page;
$blank_args .= "&linesperpage=" . $linesperpage;
$blank_args .= "&category=" . urlencode($category);
$blank_args .= "&wordsearch=" . urlencode($wordsearch);
$blank_args .= "&contactsearch=" . urlencode($contactsearch);
$blank_args .= "&wordoption=" . $wordoption;
$blank_args .= "&contactoption=" . $contactoption;
print("<frame src=\"bsearchnav.php3?" . $blank_args . "&bsact=$bsact&total_pages=$total_pages&total_rows=$total_rows\" name=\"section_nav\">");
print("<frame src=\"bsearchresult.php3?" . $blank_args . "\" name=\"section_body\">");
?>
</frameset>
</html>