示例#1
0
<?php

require "_globals.php";
require SECURITY;
if (isset($_GET[submit])) {
    include CLASS_MP_BUSINESS;
    $biz = new handleBusiness();
    $search_result = $biz->searchFunction();
}
$field_selected[$_GET[type]] = "selected";
?>

<?php 
getHeader("admin");
?>

<h3>Search</h3>

<p>When searching for a business, you can search by either the company name, address, street, city, phone number, web address, or any of the search terms that are
assoicated with that business.  TIP! When searching by phone number, input numbers only, no symbols. Example:  (707) 555-4646 becomes 7075554646.</p> 

<?php 
echo $message_format;
?>

<form action="<?php 
echo $PHP_SELF;
?>
" method="get">
	Search: <input type="text" name="search" value="<?php 
echo stripslashes($_GET["search"]);