Hi All,
wondered if anyone could have a look at my code, basicly this bit o code is just to test to see if it works, later I will replace where it echos out the postcodes within a max distance to pull data from a database.
the code works perfectly but I just wondered if there is a neater way to right it, or if anyone could check to see if there is any problems that may happen.
<?php
function getDistance($latitude1, $longitude1, $latitude2, $longitude2)
{
//$earth = 6371; //km change accordingly
$earth = 3960; //miles
//Point 1 cords
$latitude1 = deg2rad($latitude1);
$longitude1= deg2rad($longitude1);
//Point 2 cords
$latitude2 = deg2rad($latitude2);
$longitude2= deg2rad($longitude2);
//Haversine Formula
$dlongitude=$longitude2-$longitude1;
$dlatitude=$latitude2-$latitude1;
$sinlatitude=sin($dlatitude/2);
$sinlongitude=sin($dlongitude/2);
$a=($sinlatitude*$sinlatitude)+cos($latitude1)*cos($latitude2)*($sinlongitude*$sinlongitude);
$c=2*asin(min(1,sqrt($a)));
$d=round($earth*$c);
return $d;
}
if($_POST)
{
mysql_connect(localhost,"DATABASEUSERNAME","PASSWORD");
@mysql_select_db("**********") or die( "Unable to select database");
$firstpc = strtoupper(preg_replace("/[^a-zA-Z0-9]/","", $_POST[first]));
$query = 'SELECT `latitude`, `longitude` FROM `uk_postcode_04` WHERE `postcode`="'.$firstpc.'";';
$result = mysql_query($query);
$first = mysql_fetch_row($result);
$fulldataQ = "SELECT * FROM uk_postcode_04";
$fulldata = mysql_query($fulldataQ);
$miles = $_POST[miles];
while($row = mysql_fetch_array($fulldata)){
$check = getDistance($first[0], $first[1], $row['latitude'], $row['longitude']);
if($check < $miles){
echo $row['postcode'];
echo "<br />";
};
};
mysql_close();
}
?>
<form action="postcode.php" method="post">
Only enter the first part of the postcode. If your postcode is CO4 3AT, just enter the CO4.<br /><br />
postcode: <input name="first" maxlength="4" /><br />
Max Distance In Miles: <input name="miles" maxlength="4" /><br />
<input type="submit" />
</form>