";
/*
*/
echo "
";
<php?
session_start();
session_register("SESSION");
/* turn on verbose error reporting (15) to see all warnings and errors
error_reporting(15);*/
/* define a generic object */
class object {};
/* setup the configuration object */
$CFG = new object;
$CFG->dbhost = "search.mmoglaw.com";
$CFG->dbname = "mmog";
$CFG->dbuser = "root";
$CFG->dbpass = "1952khm";
$CFG->wwwroot = "";
$CFG->dirroot = "/var/www/html";
$CFG->templatedir = "$CFG->dirroot/templates";
$CFG->libdir = "$CFG->dirroot/lib";
$CFG->phpdir = "$CFG->dirroot/phpMyAdmin";
$CFG->imagedir = "$CFG->dirroot/images";
$CFG->wordlist = "$CFG->libdir/wordlist.txt";
$CFG->support = "support@thetitlenet.com";
$cfgBorder = "0";
$cfgThBgcolor = "#D3DCE3";
$cfgBgcolorOne = "#CCCCCC";
$cfgBgcolorTwo = "#DDDDDD";
$cfgMaxRows = 30;
$cfgMaxInputsize = "300px";
$cfgOrder = "ASC";
$cfgShowBlob = true;
$cfgShowSQL = true;
/* load up standard libraries */
require_once("$CFG->libdir/stdlib.php");
require_once("$CFG->libdir/dblib.php");
require_once("$CFG->libdir/mymarket.php");
require_once("$CFG->libdir/cart.php");
/* setup some global variables */
$ME = qualified_me();
/* start up the sessions, to keep things clean and manageable we will just
* use one array called SESSION to store our persistent variables. */
#session_start();
#session_register("SESSION");
/* initialize the SESSION variable if necessary */
if (! isset($SESSION)) {
$SESSION = array();
}
/* initialize the CART objct if necessary */
if (! isset($SESSION["cart"])) {
$SESSION["cart"] = new Cart;
}
/* connect to the database */
?>
echo "
Client: | |||||||
Attorney: | |||||||
Street | |||||||
City: | |||||||
Registry: | |||||||
Examiner: | Include Completed |
";
echo "Leave fields blank to select all records", PHP_EOL;
echo "
";
echo "
";
echo "New Search of our Work Orders
";
include("templates/footer.php");
echo "
";
#foreach ($_POST as $key => $value) {
# ${$key} = $value;
# $_SESSION[$key] = $value;
#}
#
# $_SESSION=($_POST);
?>