Skip to content

Commit 9156265

Browse files
committed
📦 NEW: Helper Function to Detect LIked Post
1 parent a7187a0 commit 9156265

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

admin/functions.php

+9-2
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,22 @@ function loggedInUserId()
263263
if (isLoggedIn()) {
264264
$result = query("SELECT * FROM users WHERE username='" . $_SESSION['username'] . "' ");
265265
$user = mysqli_fetch_array($result);
266+
return mysqli_num_rows($result) >= 1 ? $user['user_id'] : false;
266267

267-
if (mysqli_num_rows($result) >= 1) {
268+
/*if (mysqli_num_rows($result) >= 1) {
268269
return $user['user_id'];
269-
}
270+
}*/
270271
}
271272

272273
return false;
273274
}
274275

276+
function userLikedThisPost($post_id = '')
277+
{
278+
$result = query("SELECT * FROM likes WHERE user_id=" . loggedInUserId() . " AND post_id=$post_id");
279+
return mysqli_num_rows($result) >= 1;
280+
}
281+
275282
function insertCategories()
276283
{
277284
global $connection;

test.php

+6
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@
44
echo password_hash('secret', PASSWORD_DEFAULT, array('cost' => 12));
55
echo "<hr/>";
66
echo loggedInUserId();
7+
echo "<hr/>";
8+
if (userLikedThisPost(152)) {
9+
echo "USER LIKED IT";
10+
} else {
11+
echo "DID NOT LIKE IT";
12+
}

0 commit comments

Comments
 (0)