2005-12-04 21:04:05 +00:00
|
|
|
<? if($_REQUEST['location'] == "") { ?>
|
|
|
|
<script language="javascript" src="/ac.js"></script>
|
|
|
|
<script language="javascript">
|
|
|
|
<!--
|
|
|
|
function oncomplete() {
|
|
|
|
document.f.submit();
|
|
|
|
}
|
|
|
|
// -->
|
|
|
|
</script>
|
|
|
|
<p>Please enter your town or suburb name, followed by region or state or province and then the country (please separate by commas)<br />
|
|
|
|
eg Sydney, New South Wales, Australia</p>
|
|
|
|
<p>This is an AJAX form which depends heavily on javascript for auto-complete functionality and while it will work without javascript the usability will be heavily degraded.</p>
|
|
|
|
<form name="f" action="wot.php" method="post">
|
|
|
|
<input type='hidden' name='oldid' value='12' />
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td align=right valign=middle>Maximum Distance:</td>
|
|
|
|
<td><select name="maxdist">
|
|
|
|
<?
|
|
|
|
$arr = array(10, 25, 50, 100, 250, 500, 1000);
|
|
|
|
foreach($arr as $val)
|
|
|
|
{
|
|
|
|
echo "<option value='$val'";
|
|
|
|
if($val == $_REQUEST['maxdist'])
|
|
|
|
echo " selected";
|
|
|
|
echo ">${val}km</option>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align=right valign=middle>Location:</td>
|
2006-08-07 17:48:14 +00:00
|
|
|
<td><input autocomplete="off" type="text" id="location" name="location" value="" size="50" /> <input type="submit" name="process" value="Go"></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
<script language="javascript">
|
|
|
|
<!--
|
|
|
|
var ac1 = new AC('location', 'location', oncomplete);
|
|
|
|
ac1.enable_unicode();
|
|
|
|
document.f.location.focus();
|
|
|
|
// -->
|
|
|
|
</script>
|
|
|
|
<? } else {
|
|
|
|
if(intval($_REQUEST['location']) == 0)
|
|
|
|
{
|
|
|
|
$bits = explode(",", $_REQUEST['location']);
|
|
|
|
|
|
|
|
$loc = trim(mysql_escape_string($bits['0']));
|
|
|
|
$reg = trim(mysql_escape_string($bits['1']));
|
|
|
|
$ccname = trim(mysql_escape_string($bits['2']));
|
|
|
|
|
|
|
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
|
|
|
`locations`.`name` like '$loc%' and `regions`.`name` like '$reg%' and `countries`.`name` like '$ccname%' and
|
|
|
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
|
|
|
order by `locations`.`name` limit 1";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
if($reg != "" && $ccname == "" && mysql_num_rows($res) <= 0)
|
|
|
|
{
|
|
|
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
|
|
|
`locations`.`name` like '$loc%' and `countries`.`name` like '$reg%' and
|
|
|
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
|
|
|
order by `locations`.`name` limit 1";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
}
|
|
|
|
if(mysql_num_rows($res) <= 0)
|
|
|
|
die("Unable to find suitable location");
|
|
|
|
$row = mysql_fetch_assoc($res);
|
|
|
|
$_REQUEST['location'] = $row['locid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$maxdist = intval($_REQUEST['maxdist']);
|
|
|
|
|
|
|
|
$locid = intval($_REQUEST['location']);
|
|
|
|
$query = "select * from `locations` where `id`='$locid'";
|
|
|
|
$loc = mysql_fetch_assoc(mysql_query($query));
|
2006-08-13 15:50:19 +00:00
|
|
|
if($maxdist <= 10)
|
|
|
|
{
|
|
|
|
$query = "SELECT ROUND(6378.137 * ACOS((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + (COS(PI() * $loc[lat] / 180 ) *
|
|
|
|
COS(PI() * `locations`.`lat` / 180) * COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180))), -1) AS `distance`,
|
|
|
|
`locations`.`name` AS `location`, concat(`users`.`fname`, ' ', LEFT(`users`.`lname`, 1)) AS `name`, `long`, `lat`,
|
|
|
|
`users`.`id` as `uid`, `contactinfo` FROM `locations`, `users`, `notary` WHERE `users`.`locid` = `locations`.`id` AND
|
|
|
|
`users`.`id` = `notary`.`to` AND `users`.`listme` = 1 GROUP BY `notary`.`to`
|
|
|
|
HAVING SUM(`notary`.`points`) >= 100 AND `distance` <= '$maxdist' ORDER BY `distance`";
|
|
|
|
} else {
|
|
|
|
$query = "SELECT ROUND(6378.137 * ACOS((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + (COS(PI() * $loc[lat] / 180 ) *
|
2006-02-03 18:45:23 +00:00
|
|
|
COS(PI() * `locations`.`lat` / 180) * COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180))), -1) AS `distance`,
|
2005-12-04 21:04:05 +00:00
|
|
|
`locations`.`name` AS `location`, concat(`users`.`fname`, ' ', LEFT(`users`.`lname`, 1)) AS `name`, `long`, `lat`,
|
|
|
|
`users`.`id` as `uid`, `contactinfo` FROM `locations`, `users`, `notary` WHERE `users`.`locid` = `locations`.`id` AND
|
|
|
|
`users`.`id` = `notary`.`to` AND `users`.`listme` = 1 GROUP BY `notary`.`to`
|
|
|
|
HAVING SUM(`notary`.`points`) >= 100 AND `distance` <= '$maxdist' ORDER BY `distance` LIMIT 50";
|
2006-08-13 15:50:19 +00:00
|
|
|
}
|
2005-12-04 21:04:05 +00:00
|
|
|
$res = mysql_query($query);
|
|
|
|
?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="700">
|
|
|
|
<tr>
|
|
|
|
<td class="title"><?=_("Name")?></td>
|
|
|
|
<td class="title"><?=_("Distance")?></td>
|
|
|
|
<td class="title"><?=_("Max Points")?></td>
|
|
|
|
<td class="title"><?=_("Contact Details")?></td>
|
|
|
|
<td class="title"><?=_("Email Assurer")?></td>
|
|
|
|
</tr>
|
|
|
|
<? while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
|
|
|
$points = maxpoints($row['uid']);
|
|
|
|
if($points > 35)
|
|
|
|
$points = 35;
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" width="100"><nobr><?=$row['name']?></nobr></td>
|
|
|
|
<td class="DataTD"><?=$row['distance']?>km</td>
|
|
|
|
<td class="DataTD"><?=$points?></td>
|
|
|
|
<td class="DataTD"><?=$row['contactinfo']?></td>
|
|
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['uid']?>"><?=_("Email Me")?></a></td>
|
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
</table>
|
|
|
|
<? } ?>
|