Hello,
Last table update date seen in phpMyAdmin
Output from test.php page with php mysql query
My question is
What time zone does this date save using?
I want to use it for
when i want to do database backup, i will not back up tables not updated after last backup time
Since I will compare this last updated time as unix timestamp, I think I need to get timestamp based on server time
Sample:
$last_backup_time = '1672203200';
$last_table_updated_time = '1672207200';
if($last_table_updated_time > $last_backup_time){
// backup the table
}
Is it healthy to use the data of the last updated time of the table?