|
|
|
What's New
Pretty Much EVERYTHING!
Our website has undergone a total makeover. Every single page has been
redesigned from the ground up to make it easy for you to find your way to the
information you really need.
|
|
|
|
|
|
|
|
Current News
New Website Launching
Welcome to out new website... it's up and running, but still a work in
progress. You will be seeing many changes over the next few weeks as we refine
things and "fine-tune" our site.
|
|
|
|
|
|
|
|
Recent Events
Photo Gallery
Our new photo gallery is up and running... check out our
Photos page to see the latest pics!
|
|
|
|
|
|
|
|
|
|
Oregon Adjusters, Inc Coverage Area
Oregon Adjusters services nearly all of Oregon, parts of
Southern Washington and Northern California, Mileage fees do apply in rural
areas but most population centers are within our normal coverage area. We
currently have storage facilities in or near Portland/Vancouver, Salem, Eugene,
Roseburg, Medford, Klamath Falls, Bend and Hermiston. Oregon Adjusters,
Inc. is the only Oregon based repossession agency licensed to repossess in
California. We service many of the remote locations near the Oregon, California
border.

|
|
|
//This is only displayed if they have submitted the form
if ($searching =="yes")
{
echo "Results";
//If they did not enter a search term we give them an error
if ($find == "")
{
echo " You forgot to enter a search term";
exit;
}
// Otherwise we connect to our Database
mysql_connect("localhost", "jpwebs_jpwebs", "Jp825Bc7") or die(mysql_error());
mysql_select_db("jpwebs_oradj") or die(mysql_error());
// We preform a bit of filtering
$find = strtoupper($find);
$find = strip_tags($find);
$find = trim ($find);
//Now we search for our search term, in the field the user specified
$data = mysql_query("SELECT * FROM mileage WHERE upper($field) LIKE'%$find%'");
//And we display the results
while($result = mysql_fetch_array( $data ))
{
echo $result['zipcode'];
echo " ";
echo $result['city'];
echo " ";
echo $result['office'];
echo " ";
echo $result['miles'];
echo " ";
echo " ";
}
//This counts the number or results - and if there wasn't any it gives them a little message explaining that
$anymatches=mysql_num_rows($data);
if ($anymatches == 0)
{
echo "Sorry, but we can not find an entry to match your query
";
}
//And we remind them what they searched for
echo "Searched For: " .$find;
}
?> |
|
|
|
|
|