Hi,

If you were to get it working today then this would follow suit from now on.
PHP Code:
var TheAlpha:Number 70;

function 
GetImage()
{
    
// Declare New Date
    
Today = new Date();
    
// Number Month
    
Months = ["09""10""11""12""01""02""03""04""05""06""07""08"];
    
CurrentMonth Months[Today.getMonth()];
    
// Get Day Number
    
Days = ["02""03""04""05""06""07""08""09""10""11""12""13""14""15""16""17""18""19""20""21""22""23""24""25""26""27""28""29""30""31""01"];
    
CurrentDay Days[Today.getDate()];
    
// Get Year - 5
    
CurrentYear Today.getFullYear() - 5;
    
CurrentYears CurrentYear.toString();
    
CurrentYearFormatted CurrentYears.substring(2);
    
// Folder Month
    
FolderMonths = ["sep""oct""nov""dec""jan""feb""mar""apr""may""jun""jul""aug"];
    
CurrentFolder FolderMonths[Today.getMonth()];
    
// Display Date
    
DateNow CurrentDay CurrentMonth CurrentYearFormatted;
    
trace("Todays date formatted: " DateNow);
    
// Display Folder to get image from with name
    
FolderNow "images/" CurrentFolder "/" DateNow "." TheAlpha ".jpg";
    
trace("Folder and image to get: " FolderNow);
    
// load respective image
    
loadMovie(FolderNowmovieclipname.empty_mc);
    
movieclipname.empty_mc._alpha = (TheAlpha);
}
// Initially call function to get date ect
GetImage();
// Check for new date, currently set at every 1 hour
GetNew setInterval(GetImage3600000); 
just ignore the php tags