4
I have a column called START in DATETIME format in Mysql and I would like to check if each Row is expired and/or how many days are left to win that Row, taking into account that Row expires 30 days after the START date.
I thought to take the date and subtract with the current date but I do not know if there is how in PHP, how to do it?
I fixed that line:
DATEDIFF(START, NOW())
THE DIFFERENCES and worked perfectly– Elaine