Added more values to company edit and add

This commit is contained in:
johnny@pittpc.com
2019-09-14 23:34:11 -04:00
parent 11f1ca70ee
commit 3439058053
6 changed files with 155 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ $sql_recent_logins = mysqli_query($mysqli,"SELECT * FROM logs
ORDER BY log_id DESC LIMIT 3");
$sql_recent_logs = mysqli_query($mysqli,"SELECT * FROM logs
WHERE user_id = $session_user_id
WHERE user_id = $session_user_id AND log_type NOT LIKE 'Login'
ORDER BY log_id DESC LIMIT 5");
?>