File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -263,15 +263,22 @@ function loggedInUserId()
263
263
if (isLoggedIn ()) {
264
264
$ result = query ("SELECT * FROM users WHERE username=' " . $ _SESSION ['username ' ] . "' " );
265
265
$ user = mysqli_fetch_array ($ result );
266
+ return mysqli_num_rows ($ result ) >= 1 ? $ user ['user_id ' ] : false ;
266
267
267
- if (mysqli_num_rows ($ result ) >= 1 ) {
268
+ /* if (mysqli_num_rows($result) >= 1) {
268
269
return $user['user_id'];
269
- }
270
+ }*/
270
271
}
271
272
272
273
return false ;
273
274
}
274
275
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
+
275
282
function insertCategories ()
276
283
{
277
284
global $ connection ;
Original file line number Diff line number Diff line change 4
4
echo password_hash ('secret ' , PASSWORD_DEFAULT , array ('cost ' => 12 ));
5
5
echo "<hr/> " ;
6
6
echo loggedInUserId ();
7
+ echo "<hr/> " ;
8
+ if (userLikedThisPost (152 )) {
9
+ echo "USER LIKED IT " ;
10
+ } else {
11
+ echo "DID NOT LIKE IT " ;
12
+ }
You can’t perform that action at this time.
0 commit comments