This commit is contained in:
2024-09-03 03:07:44 +05:30
parent a021bfa479
commit f7d8430341
5 changed files with 5 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
### Xeorl - The All-In-One, Fully Free to Use Advanced Link Shortener and Management Tool - Powered by ([@xodivorce](https://instagram.com/xodivorce)) ✨
[![status](https://img.shields.io/badge/status-active-brightgreen.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
[![version](https://img.shields.io/badge/version-v3.1.1-yellow.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
[![version](https://img.shields.io/badge/version-v3.1.2-yellow.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
[![PRs](https://img.shields.io/badge/PRs-welcome-blue.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
<br></br>

BIN
htdocs/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@@ -4,7 +4,7 @@
<div class="logo">
<img src="assets/images/url.png" alt="Xeorl Logo" class="logo-img">
<span>Xeorl</span>
<span class="version-number">3.1.1</span>
<span class="version-number">3.1.2</span>
</div>
<label class="burger" for="burger">
<input type="checkbox" id="burger">

View File

@@ -29,6 +29,8 @@ if ($result_total_clicks) {
}
// Calculate active users (assuming there's a 'user_sessions' table or similar)
/*
$sql_active_users = "SELECT COUNT(DISTINCT user_id) as active_users FROM user_sessions WHERE last_active > DATE_SUB(NOW(), INTERVAL 30 DAY)";
$result_active_users = mysqli_query($conn, $sql_active_users);
if ($result_active_users) {
@@ -37,5 +39,6 @@ if ($result_active_users) {
} else {
//echo "Error fetching active users: " . mysqli_error($conn);
}
*/
?>