Jump to content

need help with timeclock app + cron


newbiehacker

Recommended Posts

I am using php timeclock and need a way to notify the hr dept if an employee does not clock out at night. My problem is that i cant figure out a way to write the mysql code for the cron job. the database is set up like this

fullname|inout|timestamp|notes|

I need the sql to find the employees that are still in the "out" status at a certain time. I am a newbie and would be thankful for any help.
Thanks
Link to comment
https://forums.phpfreaks.com/topic/13868-need-help-with-timeclock-app-cron/
Share on other sites

yes, the inout field either holds "in" or "out" and I need to run the cron at around 1:00 in the morning to check which employees if any did not clock out for that day. the timestamp field hold a unix time stamp which is converted in the php timeclock app.
here is a sample of the table. the ip adress does not matter. I use the employees extension for fullname
+----------+-------+------------+-------+---------------+
| fullname | inout | timestamp  | notes | ipaddress    |
+----------+-------+------------+-------+---------------+
| 200      | out  | 1152219879 | NULL  |              |
| 200      | in    | 1152219858 | NULL  |              |
| 200      | out  | 1152219659 | NULL  |              |
| 200      | in    | 1152219636 | NULL  |              |
| 200      | out  | 1152219405 | NULL  |              |
| 200      | in    | 1152219385 | NULL  |              |
| 200      | out  | 1152219118 | NULL  |              |
| 200      | in    | 1152219028 | NULL  |              |

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.