Does the strtotime function work to convert an RFC822 Format Date to a Unix Timestamp? Doesn't seem to work for me...does anyone know the answer to this, or possibly have a function they use to do the same? Thanks a bunch!
Hello. strtotime is for converting textual date/time formats. You might me better with th mktime() function, although you will need to separate your RFC822 string into its separate parts first. Ross