Yes it is a silly error, but that's good because it's nothing big to fix 
From php.net:
I (capital i) Whether or not the date is in daylight saving time 1 if Daylight Saving Time, 0 otherwise.
You've got:
PHP Code:
$datetime=date("l, F I, Y, h:iA");
Notice the I.
So you're in DST and it's a boolean value, so it shows a 1.
This is not the first of May...
What you want is:
PHP Code:
$datetime=date("l, F j, Y, h:iA");
Hope this solves your problem.
j shows the actual day, without leading zeros.
You can use "d" if you want to have them.
Bookmarks