shawn bright wrote: > lo there all, > > i am wrestling with this for a bit now. how do i get a time object for > two > weeks ago ? > if > t = Time.now, how do i get t - 2 weeks ? > > thanks > Time is stored in seconds so: Time.now - 60*60*24*14 = 2 weeks ago Dan