I've just spent the past hour trying to find a solution on here but it's all a little foreign to me.
I have a MySQL database that looks as such:
Postcode int(4),
City varchar,
State varchar,
Latitude decimal(7,4),
Longitude decimal(7,4)
I want the user to enter their post code (1660 for example) and a radius of x (lets say 10) miles or kilometers. When they hit search, I want to return a list of all the cities within that radius. I have a database that contains all of the post codes, cities, latitudes, longitudes etc. of all areas within Australia.
The SQL I've stumbled upon is pretty confusing so I'm not sure if it's what I'm after or not.
I'm sure the answer is out there, just not sure what I'm looking for.
Many thanks,
J