Hi I need a unix date format for 01/01/2009, as i dont know how to show it its something like this i think 1187022039 Any help would be greatful, also how do i work this out myself Thanks
once you have the timestamp in a variable such as this $timestamp...you can use the date() function in php to recieve the desired output. date("m-d-Y", $timestamp); hope that helps...