prepare('SELECT * FROM users INNER JOIN profiles ON profiles.user_id = users.user_id WHERE user_name = ? LIMIT 1'); $get_user->bind_param('s', $action); $get_user->execute(); $user_result = $get_user->get_result(); if ($user_result->num_rows == 0) { printHeader(''); noUser(); } else { $user = $user_result->fetch_assoc(); if (!((isset($_GET['offset']) && is_numeric($_GET['offset'])) && isset($_GET['dateTime']))) { $tabTitle = 'Ziiverse - '. htmlspecialchars($user['nickname'], ENT_QUOTES) .'\'s Profile'; printHeader(''); echo '

'. htmlspecialchars($user['nickname'], ENT_QUOTES) .'\'s Yeahs

'; $get_yeahs = $dbc->prepare('SELECT * FROM yeahs WHERE yeah_by = ? ORDER BY yeah_id DESC LIMIT 20'); $get_yeahs->bind_param('i', $user['user_id']); } else { $offset = ($_GET['offset'] * 25); $dateTime = htmlspecialchars($_GET['dateTime']); $get_yeahs = $dbc->prepare('SELECT * FROM yeahs WHERE yeah_by = ? AND date_time < ? ORDER BY date_time DESC LIMIT 20 OFFSET ?'); $get_yeahs->bind_param('isi', $user['user_id'], $dateTime, $offset); } $get_yeahs->execute(); $yeahs_result = $get_yeahs->get_result(); if (!$yeahs_result->num_rows == 0) { while ($yeahs = $yeahs_result->fetch_array()) { if ($yeahs['type'] == "post") { $get_posts = $dbc->prepare('SELECT * FROM posts INNER JOIN titles ON title_id = post_title INNER JOIN users ON user_id = post_by_id WHERE id = ? AND deleted = 0 LIMIT 1'); $get_posts->bind_param('i', $yeahs['yeah_post']); $get_posts->execute(); $posts_result = $get_posts->get_result(); if ($posts_result->num_rows==0) { continue; } $posts = $posts_result->fetch_assoc(); echo '

'. $posts['title_name'] .'

'; printPost($posts, 1); } else { //replies $get_replies = $dbc->prepare('SELECT * FROM replies WHERE reply_id = ? LIMIT 1'); $get_replies->bind_param('i', $yeahs['yeah_post']); $get_replies->execute(); $replies_result = $get_replies->get_result(); $replies = $replies_result->fetch_assoc(); $get_user_post = $dbc->prepare('SELECT users.* FROM users, posts WHERE users.user_id = posts.post_by_id AND posts.id = ? LIMIT 1'); $get_user_post->bind_param('i', $replies['reply_post']); $get_user_post->execute(); $user_post_result = $get_user_post->get_result(); $user_post = $user_post_result->fetch_assoc(); $get_reply_post = $dbc->prepare('SELECT * FROM posts WHERE id = ? LIMIT 1'); $get_reply_post->bind_param('i', $replies['reply_post']); $get_reply_post->execute(); $reply_post_result = $get_reply_post->get_result(); $reply_post = $reply_post_result->fetch_assoc(); $get_reply_user = $dbc->prepare('SELECT * FROM users WHERE user_id = ? LIMIT 1'); $get_reply_user->bind_param('i', $replies['reply_by_id']); $get_reply_user->execute(); $reply_user_result = $get_reply_user->get_result(); $reply_user = $reply_user_result->fetch_assoc(); echo '

Comment on '. htmlspecialchars($user_post['nickname'], ENT_QUOTES) .'\'s Post

'. htmlspecialchars($reply_user['nickname'], ENT_QUOTES) .'

' . humanTiming(strtotime($replies['date_time'])) . '

'; if (!empty($replies['reply_image'])) { echo '
'; } echo '
'. (mb_strlen($replies['text']) > 199 ? mb_substr($replies['text'],0,200) . '...' : $replies['text']) .'
'; $yeah_count = $dbc->prepare('SELECT COUNT(yeah_by) FROM yeahs WHERE type = "reply" AND yeah_post = ?'); $yeah_count->bind_param('i', $replies['reply_id']); $yeah_count->execute(); $result_count = $yeah_count->get_result(); $yeah_amount = $result_count->fetch_assoc(); $nah_count = $dbc->prepare('SELECT COUNT(nah_by) FROM nahs WHERE type = 1 AND nah_post = ?'); $nah_count->bind_param('i', $replies['reply_id']); $nah_count->execute(); $result_count = $nah_count->get_result(); $nah_amount = $result_count->fetch_assoc(); $yeahs = $yeah_amount['COUNT(yeah_by)'] - $nah_amount['COUNT(nah_by)']; echo ''; echo ''; echo '
'. $yeahs .'
'; echo '
'; } } } else { if (!((isset($_GET['offset']) && is_numeric($_GET['offset'])) && isset($_GET['dateTime']))) { echo '

There are no posts with Yeahs yet.

'; } } }