$buldurt=mysql_query("SELECT MIN(tarih) FROM kupon WHERE TIMESTAMPDIFF( MINUTE , tarih, now( ) )<1440 AND oynanma='1' AND uyeisim='$session'");
$buldurtx=mysql_fetch_array($buldurt);
This is giving me the TIMESTAMP value that I need first. I want to print;
$buldurtx[0] + 1440 minutes = TIMESTAMP THAT I NEED.
How can I solve that problem, I could not find :(
SELECT UNIX_TIMESTAMP(MIN(tarih) + INTERVAL 1440 MINUTE) FROM ...