Hi is it possible to time my rows, so that after 24 hours has elapsed for a particular row, it made an automatic update or insert?
you can set up cron script which will be checking the rows lets say every 10 minutes, ale if any is older > 24 it will update it...
cron is linux service, which can execute files, for example php files with code for checking you mysql record, in this case..
For example, you have this php file: <?php mysql_query("INSTERT INTO `table`(`a`,`b`) VALUES ('1','2'); ?> And the file is located in this path: /home/yourdomain/public_html/network/cronjob.php Now in cPanel, goto Cronjob --> Advanced: Command: php -q /home/saffilia/public_html/network/cronjob.php Minute: * Hour: */24 Day: * Month: * Weekday: * Hope it helps