I let users earn money through my site, and I want to record their daily earnings.
I want to record their earnings starting from 00:01am
I don't know how to do this using PHP and MySQL.
I know how to create, update, etc database. But I am streuggling with PHP time.
I don't know how to create a database row for each user at the start of the day and then update their earnings until the end of the day.
Here is what I have come up with ...
<?php
$time = '00:01';
$day = 11;
$month = 3;
$year = 2018;
strtotime("{$month} {$day} {$year} {$time}");
// The above function will return a timestamp
What do you think?