Distance between 2 pairs of lat long co-ordinates
Based on examples by Chris Veness; functions for calculating the distance in miles or km between 2 pairs of latitude and longitude co-ordinates in PHP and JavaScript (also requires Number.prototype.round.js - because using Math.round() is just annoying).
Tagged calculate, distance, JavaScript, latitude, longitude and PHP.
Pavatar class
It has been available from my SVN repository for a while, but you can view my pavatar object source using Collaboa; it supports all 3 methods of retrieval and a caching mechanism, as required by the Pavatar 0.3.0 Candidate Recommendation
If anyone finds this useful enough to want to use it, I'm open to licensing suggestions.
Uploading files with ActionScript 2.0 & PHP
If you have to write some server side code (such as PHP) to receive a file being uploaded through HTTP POST from ActionScript 2.0 (such as in Flash 8 - here is a good tutorial) - the $_FILES['Filedata'] variable which PHP can access is something defined in the Flash internals - not something a Flash developer sets.
Hopefully this will save some PHP and Flash developers a few hours of headache.
Tagged ActionScript, Flash, PHP and webdev.