No problem. One thing I should have put in the last post was that you can get Wednesday June 13, 2003 all in one line from the DATE_FORMAT() function in MySQL (which I am assuming you're using as you have it in your code).
For instance, you could have written it as
DATE_FORMAT(date, '%W %M %d %Y')
Unless you needed it separated. When I first started working with date/time stuff in PHP, I relied heavily upon its functions but found that you can save a lot of code by using the plethora of functions MySQL provides you.
http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Date_and_time_functions
Of course, if you aren't using MySQL, it's really a moot point.