Answers for "last 6 days data fetch from mysql in php"

PHP
0

how to fetch days old records php mysql

SELECT * FROM table_name 
WHERE date_time + INTERVAL 90 DAY <= NOW()
Posted by: Guest on August-21-2020

Browse Popular Code Answers by Language