Calculate 2 dates

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
jay007
Posts: 17
Joined: 2015-04-29 18:28

Calculate 2 dates

Post by jay007 » 2015-05-01 20:17

I have two date fields startdate and enddate. I have another integer field called daysremaining. Below is my hook I copied from another post on this forum but it does not work. I am trying to show days remaining between the two dates.

Code: Select all

function members_after_insert($data, $memberInfo, &$args){
$daysremaining = (strtotime($data['startdate'])- strtotime($data['enddate']))/86400;
		return TRUE;

Satya Kavala
Veteran Member
Posts: 45
Joined: 2015-04-15 06:33
Location: Hyderabad
Contact:

Re: Calculate 2 dates

Post by Satya Kavala » 2015-05-21 05:53

Hello Jay007,
Please check your PM.
Thanks&Regards
Satya Kavala
[email protected]

Post Reply