mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-22 00:53:22 -05:00
This returns the latest expiration date for membership.
Future proofing when people have had more than 1 paid membership!
This commit is contained in:
parent
69ea453461
commit
fb422fcc3b
@ -85,7 +85,8 @@ $csv_directory = CSV_DIRECTORY;
|
||||
FROM transaction_log LEFT JOIN contacts ON transaction_log.sold_to = contacts.contact_id
|
||||
WHERE SUBSTRING_INDEX(date, ' ', 1) <= DATE_ADD(date, INTERVAL 365 DAY)
|
||||
AND (transaction_type='Memberships' AND paid=1) AND contact_id=" .
|
||||
$_POST['contact_id'] . ";";
|
||||
$_POST['contact_id'] .
|
||||
" ORDER by membership_start DESC;";
|
||||
|
||||
$sql = mysql_query($query, $YBDB) or die(mysql_error());
|
||||
$result = mysql_fetch_assoc($sql);
|
||||
|
Loading…
x
Reference in New Issue
Block a user