<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<div>
<?php
error_reporting(E_ALL);
// Website SuperSearch Version 1.0.00
// The free, open source, PHP and MySQL web-based
// Bible Reference retrevial and search utility
//
// Copyright (C) 2006 Luke Mounsey
// www.BibleSuperSearch.com
// www.Alive-in-Christ.com
//
// bible_supersearch.php
// Standard Web interface for Bible SuperSearch
// Feel free to use this interface as a stand-alone, or incorporate it
// into your site layout
// Just paste this entire code into your site template.
// And make sure that you save it as a .PHP file!!! (Not .HTML)
//
// This is the file the user loads on their computer from your server
// This routes to the selected interface file.
// For additional html interfaces, see www.BibleSuperSearch.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License included in the file
// "license.txt" for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require_once("search_config.php");
require_once("search_system.php");
//echo("I am here 2");
$interface=$_GET['interface'];
// set the interface to use
if($interface==""){$interface=$default_interface;}
if($interface=="standard"){$interface=$standard_interface;}
//echo("I am here 3");
// manually set interface
// $interface="standard";
require_once("search_interfaces/$interface.php");
?>
</div>