apw Posted September 15, 2009 Share Posted September 15, 2009 Hello im trying to use the now() to capture the time a player clicks on the upgrade button. Once the player has done that i would like to add time that now() has captured. If now() has 07:15:00 i want to add an extra 15-minutes to this time then compare the two times to see if the 15-minutes has passed for an event to occur! How would you do this? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/174306-can-you-use-the-now-this-way/ Share on other sites More sharing options...
trq Posted September 15, 2009 Share Posted September 15, 2009 There is no such thing as now() in php, you need to be allot clearer with your description. Quote Link to comment https://forums.phpfreaks.com/topic/174306-can-you-use-the-now-this-way/#findComment-918842 Share on other sites More sharing options...
MartinGr Posted September 15, 2009 Share Posted September 15, 2009 Like thorpe said there is no now() function in PHP. However there is time(), which return current timestamp. So, if you want to get current time use $current = time(); And if you want to add 15 minutes to it just add 15*60 to it. Quote Link to comment https://forums.phpfreaks.com/topic/174306-can-you-use-the-now-this-way/#findComment-918865 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.