thanks for the info, but was hoping php could work out the date autmatically have tried using mktime but it doesnt seem to work.
Thanks
Sorry fixed it now with the following
list($day, $month, $year) = split('[/]', $date);
$timestamp = mktime(0,0,0,$month,$day -1,$year);//Make Timestamp
Thanks for your help