aalsulaiti Posted November 22, 2012 Share Posted November 22, 2012 Hello, I used PHP-Login (http://www.php-login.net/) login system to make people login through it, however, I want all the users after they login to be redirected to another page and in this page I want to have like two buttons. One of the buttons says "Check-in" and the other "Check-out" and each of the buttons has a time (HH:MM:SS MM/DD/YYYY) so once I press check-in it automatically checks me in and log that in a table let's say "checkin" and it will keep the date and time logged under user "X" and once the user X checks out, the time and date will be logged in a table called checkout How can I make this? I've been looking for a long time and didn't find anything yet! Quote Link to comment https://forums.phpfreaks.com/topic/271054-check-inout-php-web-interface/ Share on other sites More sharing options...
Muddy_Funster Posted November 23, 2012 Share Posted November 23, 2012 This is about as simple as it gets, are you here asking for help to code this or for another script to download? If it's help your after show us the code you have tried already if it's a script, your in the wrong place Quote Link to comment https://forums.phpfreaks.com/topic/271054-check-inout-php-web-interface/#findComment-1394561 Share on other sites More sharing options...
aalsulaiti Posted November 24, 2012 Author Share Posted November 24, 2012 (edited) I have scripts for login/registration which is working great, now I want once someone login to be able to view two buttons one says "Check-in" other says "Check-out" once I press "Check-in" Let's say for instance the time zone is GMT +3 It will log the exact time of the check in and once checked out it will log the exact time of checking out. function formatTime($microtime, $format) { list($timestamp, $fraction) = explode('.', $microtime); return date($format, (int)$timestamp) . '.' . $fraction; } Does this code sounds right to log the accurate time of executing the button? So let's say I make a button like this: <form action="checkin.php" method="post"><textarea name="Check me in!"></textarea> <input type="submit" value="send" /> </form> and the checkin.php would contain: function formatTime($microtime, $format){ list($timestamp, $fraction) = explode('.', $microtime); return date($format, (int)$timestamp) . '.' . $fraction; } but I don't know how to make it logged in a view able page for later reference. Edited November 24, 2012 by aalsulaiti Quote Link to comment https://forums.phpfreaks.com/topic/271054-check-inout-php-web-interface/#findComment-1394835 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.