I have this code: date("d/m-Y", strtotime('+17 days', time()));
But i need to convert it to a timestamp with no specifik time.
The case is i need to test if the timestamp is equal to one i have in my database. Just to be clear, the time that's created above, is from today, 30 Juli, 2015 and the timestamp i have in my database is: 1438214400 (Also 30 juli, 2015)
Is it possible to make date("d/m-Y", strtotime('+17 days', time()));
a timestamp so that will be equal to my timestamp in my database?
Best regards