@@ -10,7 +10,7 @@ |
||
| 10 | 10 | <?php $__time_h = new time_helper(); ?> |
| 11 | 11 | <?php |
| 12 | 12 | |
| 13 | -if($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) { |
|
| 13 | +if ($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) { |
|
| 14 | 14 | $stmt = $conn->prepare("INSERT INTO video_response (toid, author, video) VALUES (?, ?, ?)"); |
| 15 | 15 | $stmt->bind_param("sss", $_GET['reciever'], $_SESSION['siteusername'], $_GET['sending']); |
| 16 | 16 | $stmt->execute(); |
@@ -27,14 +27,14 @@ |
||
| 27 | 27 | } |
| 28 | 28 | */ |
| 29 | 29 | |
| 30 | -if(!$__user_h->user_exists($_GET['n'])) { |
|
| 30 | +if (!$__user_h->user_exists($_GET['n'])) { |
|
| 31 | 31 | $request->error->message = "This user does not exist!"; $request->error->status = ""; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -if($__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
| 34 | +if ($__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
| 35 | 35 | { $request->error->message = "You are already subscribed to this person!"; $request->error->status = ""; } |
| 36 | 36 | |
| 37 | -if($request->error->status == "OK") { |
|
| 37 | +if ($request->error->status == "OK") { |
|
| 38 | 38 | $stmt = $__db->prepare("INSERT INTO subscribers (sender, reciever) VALUES (:sender, :reciever)"); |
| 39 | 39 | $stmt->bindParam(":sender", $request->sender); |
| 40 | 40 | $stmt->bindParam(":reciever", $request->name); |
@@ -12,11 +12,11 @@ discard block |
||
| 12 | 12 | $name = $_GET['user']; |
| 13 | 13 | $author = $_SESSION['siteusername']; |
| 14 | 14 | |
| 15 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
| 15 | +if (!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
| 16 | 16 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | -if($name == $_SESSION['siteusername']) { |
|
| 19 | +if ($name == $_SESSION['siteusername']) { |
|
| 20 | 20 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
| 21 | 21 | } |
| 22 | 22 | |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
| 25 | 25 | $stmt->execute(); |
| 26 | 26 | $result = $stmt->get_result(); |
| 27 | - if($result->num_rows === 1) die('You already blocked this person!'); |
|
| 27 | + if ($result->num_rows === 1) die('You already blocked this person!'); |
|
| 28 | 28 | $stmt->close(); |
| 29 | 29 | |
| 30 | 30 | $stmt = $conn->prepare("INSERT INTO block (sender, reciever) VALUES (?, ?)"); |
@@ -24,8 +24,10 @@ |
||
| 24 | 24 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
| 25 | 25 | $stmt->execute(); |
| 26 | 26 | $result = $stmt->get_result(); |
| 27 | - if($result->num_rows === 1) die('You already blocked this person!'); |
|
| 28 | -$stmt->close(); |
|
| 27 | + if($result->num_rows === 1) { |
|
| 28 | + die('You already blocked this person!'); |
|
| 29 | + } |
|
| 30 | + $stmt->close(); |
|
| 29 | 31 | |
| 30 | 32 | $stmt = $conn->prepare("INSERT INTO block (sender, reciever) VALUES (?, ?)"); |
| 31 | 33 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
@@ -21,10 +21,10 @@ |
||
| 21 | 21 | ] |
| 22 | 22 | ]; |
| 23 | 23 | |
| 24 | -if(!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
| 24 | +if (!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
| 25 | 25 | { $request->error->message = "You aren't subscribed to this person!"; $request->error->status = ""; } |
| 26 | 26 | |
| 27 | -if($request->error->status == "OK") { |
|
| 27 | +if ($request->error->status == "OK") { |
|
| 28 | 28 | $stmt = $__db->prepare("DELETE FROM subscribers WHERE sender=:sender AND reciever=:reciever"); |
| 29 | 29 | $stmt->execute(array( |
| 30 | 30 | ':sender' => $request->sender, |
@@ -27,8 +27,8 @@ |
||
| 27 | 27 | if($request->error->status == "OK") { |
| 28 | 28 | $stmt = $__db->prepare("DELETE FROM subscribers WHERE sender=:sender AND reciever=:reciever"); |
| 29 | 29 | $stmt->execute(array( |
| 30 | - ':sender' => $request->sender, |
|
| 31 | - ':reciever' => $request->name, |
|
| 30 | + ':sender' => $request->sender, |
|
| 31 | + ':reciever' => $request->name, |
|
| 32 | 32 | )); |
| 33 | 33 | |
| 34 | 34 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | <?php |
| 12 | 12 | $search = $_SESSION['siteusername']; |
| 13 | 13 | |
| 14 | - if($_GET['filter'] == "time") { |
|
| 14 | + if ($_GET['filter'] == "time") { |
|
| 15 | 15 | $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC"); |
| 16 | 16 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
| 17 | 17 | $stmt->execute(); |
| 18 | - } else if($_GET['filter'] == "title") { |
|
| 18 | + } else if ($_GET['filter'] == "title") { |
|
| 19 | 19 | $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY title DESC"); |
| 20 | 20 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
| 21 | 21 | $stmt->execute(); |
@@ -23,23 +23,23 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | $results_per_page = 12; |
| 25 | 25 | $number_of_result = $stmt->rowCount(); |
| 26 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 26 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
| 27 | 27 | |
| 28 | - if (!isset ($_GET['page']) ) { |
|
| 28 | + if (!isset ($_GET['page'])) { |
|
| 29 | 29 | $page = 1; |
| 30 | 30 | } else { |
| 31 | - $page = (int)$_GET['page']; |
|
| 31 | + $page = (int) $_GET['page']; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - $page_first_result = ($page - 1) * $results_per_page; |
|
| 34 | + $page_first_result = ($page - 1)*$results_per_page; |
|
| 35 | 35 | |
| 36 | - if($_GET['filter'] == "time") { |
|
| 36 | + if ($_GET['filter'] == "time") { |
|
| 37 | 37 | $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
| 38 | 38 | $stmt6->bindParam(":search", $search); |
| 39 | 39 | $stmt6->bindParam(":pfirst", $page_first_result); |
| 40 | 40 | $stmt6->bindParam(":pper", $results_per_page); |
| 41 | 41 | $stmt6->execute(); |
| 42 | - } else if($_GET['filter'] == "title") { |
|
| 42 | + } else if ($_GET['filter'] == "title") { |
|
| 43 | 43 | $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY title LIMIT :pfirst, :pper"); |
| 44 | 44 | $stmt6->bindParam(":search", $search); |
| 45 | 45 | $stmt6->bindParam(":pfirst", $page_first_result); |
@@ -52,15 +52,15 @@ discard block |
||
| 52 | 52 | <th style="width: 80%;"> |
| 53 | 53 | <small class="video-filter-options"> |
| 54 | 54 | Sort by: |
| 55 | - <a id="selector-title" onclick="changeFilter_Title();" <?php if($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | |
|
| 56 | - <a id="selector-time" onclick="changeFilter_Time();" <?php if($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a> |
|
| 55 | + <a id="selector-title" onclick="changeFilter_Title();" <?php if ($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | |
|
| 56 | + <a id="selector-time" onclick="changeFilter_Time();" <?php if ($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a> |
|
| 57 | 57 | </small> |
| 58 | 58 | </th> |
| 59 | 59 | <th style="margin: 5px; width: 20%;"></th> |
| 60 | 60 | </tr> |
| 61 | 61 | |
| 62 | 62 | <?php |
| 63 | - while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 63 | + while ($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 64 | 64 | $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
| 65 | 65 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 66 | 66 | $video['duration'] = $__time_h->timestamp($video['duration']); |
@@ -69,19 +69,19 @@ discard block |
||
| 69 | 69 | $video['title'] = htmlspecialchars($video['title']); |
| 70 | 70 | $video['description'] = $__video_h->shorten_description($video['description'], 50); |
| 71 | 71 | |
| 72 | - if($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
| 72 | + if ($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
| 73 | 73 | $status = "Corrupted"; |
| 74 | - } else if($video['visibility'] == "v") { |
|
| 74 | + } else if ($video['visibility'] == "v") { |
|
| 75 | 75 | $status = "Approved"; |
| 76 | - } else if($video['visibility'] == "n") { |
|
| 76 | + } else if ($video['visibility'] == "n") { |
|
| 77 | 77 | $status = "Approved"; |
| 78 | - } else if($video['visibility'] == "o") { |
|
| 78 | + } else if ($video['visibility'] == "o") { |
|
| 79 | 79 | $status = "Disapproved"; |
| 80 | 80 | } else { |
| 81 | 81 | $status = "Unknown"; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - if($video['commenting'] == "a") |
|
| 84 | + if ($video['commenting'] == "a") |
|
| 85 | 85 | $video['commentstatus'] = "Commenting allowed"; |
| 86 | 86 | else |
| 87 | 87 | $video['commentstatus'] = "Commenting disallowed"; |
@@ -85,10 +85,11 @@ |
||
| 85 | 85 | $status = "Unknown"; |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if($video['commenting'] == "a") |
|
| 89 | - $video['commentstatus'] = "Commenting allowed"; |
|
| 90 | - else |
|
| 91 | - $video['commentstatus'] = "Commenting disallowed"; |
|
| 88 | + if($video['commenting'] == "a") { |
|
| 89 | + $video['commentstatus'] = "Commenting allowed"; |
|
| 90 | + } else { |
|
| 91 | + $video['commentstatus'] = "Commenting disallowed"; |
|
| 92 | + } |
|
| 92 | 93 | ?> |
| 93 | 94 | <tr style="margin-top: 5px;" id="videoslist"> |
| 94 | 95 | <td class="video-manager-left"> |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | <?php |
| 141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 142 | 142 | $stmt->execute(); |
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | <?php |
| 176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 177 | 177 | $stmt->execute(); |
| 178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | <?php |
| 211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 212 | 212 | $stmt->execute(); |
| 213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | <?php |
| 246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 247 | 247 | $stmt->execute(); |
| 248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | <?php |
| 281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 282 | 282 | $stmt->execute(); |
| 283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -138,16 +138,16 @@ discard block |
||
| 138 | 138 | </div> |
| 139 | 139 | <div class="browse-item-row ytg-box"> |
| 140 | 140 | <?php |
| 141 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 142 | - $stmt->execute(); |
|
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | - ?> |
|
| 141 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 142 | + $stmt->execute(); |
|
| 143 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | + ?> |
|
| 151 | 151 | <div class="browse-item yt-tile-default "> |
| 152 | 152 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 153 | 153 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -173,16 +173,16 @@ discard block |
||
| 173 | 173 | </div> |
| 174 | 174 | <div class="browse-item-row ytg-box"> |
| 175 | 175 | <?php |
| 176 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 177 | - $stmt->execute(); |
|
| 178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 180 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 181 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 182 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 183 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 184 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 185 | - ?> |
|
| 176 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 177 | + $stmt->execute(); |
|
| 178 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 180 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 181 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 182 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 183 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 184 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 185 | + ?> |
|
| 186 | 186 | <div class="browse-item yt-tile-default "> |
| 187 | 187 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 188 | 188 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -208,16 +208,16 @@ discard block |
||
| 208 | 208 | </div> |
| 209 | 209 | <div class="browse-item-row ytg-box"> |
| 210 | 210 | <?php |
| 211 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 212 | - $stmt->execute(); |
|
| 213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 215 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 216 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 217 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 218 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 219 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 220 | - ?> |
|
| 211 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 212 | + $stmt->execute(); |
|
| 213 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 215 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 216 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 217 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 218 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 219 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 220 | + ?> |
|
| 221 | 221 | <div class="browse-item yt-tile-default "> |
| 222 | 222 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 223 | 223 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -243,16 +243,16 @@ discard block |
||
| 243 | 243 | </div> |
| 244 | 244 | <div class="browse-item-row ytg-box"> |
| 245 | 245 | <?php |
| 246 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 247 | - $stmt->execute(); |
|
| 248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 250 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 251 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 252 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 253 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 254 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 255 | - ?> |
|
| 246 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 247 | + $stmt->execute(); |
|
| 248 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 250 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 251 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 252 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 253 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 254 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 255 | + ?> |
|
| 256 | 256 | <div class="browse-item yt-tile-default "> |
| 257 | 257 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 258 | 258 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -278,16 +278,16 @@ discard block |
||
| 278 | 278 | </div> |
| 279 | 279 | <div class="browse-item-row ytg-box"> |
| 280 | 280 | <?php |
| 281 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 282 | - $stmt->execute(); |
|
| 283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 285 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 286 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 287 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 288 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 289 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 290 | - ?> |
|
| 281 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 282 | + $stmt->execute(); |
|
| 283 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 285 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 286 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 287 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 288 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 289 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 290 | + ?> |
|
| 291 | 291 | <div class="browse-item yt-tile-default "> |
| 292 | 292 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 293 | 293 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | <?php |
| 141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
| 142 | 142 | $stmt->execute(); |
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | <?php |
| 186 | 186 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Comedy' ORDER BY rand() LIMIT 4"); |
| 187 | 187 | $stmt->execute(); |
| 188 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 188 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 189 | 189 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 190 | 190 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 191 | 191 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | <?php |
| 231 | 231 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
| 232 | 232 | $stmt->execute(); |
| 233 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 233 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 234 | 234 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 235 | 235 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 236 | 236 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | <?php |
| 280 | 280 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Gaming' ORDER BY rand() LIMIT 4"); |
| 281 | 281 | $stmt->execute(); |
| 282 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 282 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 283 | 283 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 284 | 284 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 285 | 285 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -328,7 +328,7 @@ discard block |
||
| 328 | 328 | <?php |
| 329 | 329 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
| 330 | 330 | $stmt->execute(); |
| 331 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 331 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 332 | 332 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 333 | 333 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 334 | 334 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | <?php |
| 378 | 378 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
| 379 | 379 | $stmt->execute(); |
| 380 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 380 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 381 | 381 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 382 | 382 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 383 | 383 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -426,7 +426,7 @@ discard block |
||
| 426 | 426 | <?php |
| 427 | 427 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
| 428 | 428 | $stmt->execute(); |
| 429 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 429 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 430 | 430 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 431 | 431 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 432 | 432 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | <?php |
| 476 | 476 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4"); |
| 477 | 477 | $stmt->execute(); |
| 478 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 478 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 479 | 479 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 480 | 480 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 481 | 481 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -138,16 +138,16 @@ discard block |
||
| 138 | 138 | </div> |
| 139 | 139 | <div class="browse-item-row ytg-box"> |
| 140 | 140 | <?php |
| 141 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
| 142 | - $stmt->execute(); |
|
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | - ?> |
|
| 141 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
| 142 | + $stmt->execute(); |
|
| 143 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | + ?> |
|
| 151 | 151 | <div class="browse-item yt-tile-default "> |
| 152 | 152 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 153 | 153 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -183,16 +183,16 @@ discard block |
||
| 183 | 183 | </div> |
| 184 | 184 | <div class="browse-item-row ytg-box"> |
| 185 | 185 | <?php |
| 186 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Comedy' ORDER BY rand() LIMIT 4"); |
|
| 187 | - $stmt->execute(); |
|
| 188 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 189 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 190 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 191 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 192 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 193 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 194 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 195 | - ?> |
|
| 186 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Comedy' ORDER BY rand() LIMIT 4"); |
|
| 187 | + $stmt->execute(); |
|
| 188 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 189 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 190 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 191 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 192 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 193 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 194 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 195 | + ?> |
|
| 196 | 196 | <div class="browse-item yt-tile-default "> |
| 197 | 197 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 198 | 198 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -228,16 +228,16 @@ discard block |
||
| 228 | 228 | </div> |
| 229 | 229 | <div class="browse-item-row ytg-box"> |
| 230 | 230 | <?php |
| 231 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
| 232 | - $stmt->execute(); |
|
| 233 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 234 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 235 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 236 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 237 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 238 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 239 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 240 | - ?> |
|
| 231 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
| 232 | + $stmt->execute(); |
|
| 233 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 234 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 235 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 236 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 237 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 238 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 239 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 240 | + ?> |
|
| 241 | 241 | <div class="browse-item yt-tile-default "> |
| 242 | 242 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 243 | 243 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -277,16 +277,16 @@ discard block |
||
| 277 | 277 | </div> |
| 278 | 278 | <div class="browse-item-row ytg-box"> |
| 279 | 279 | <?php |
| 280 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Gaming' ORDER BY rand() LIMIT 4"); |
|
| 281 | - $stmt->execute(); |
|
| 282 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 283 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 284 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 285 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 286 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 287 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 288 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 289 | - ?> |
|
| 280 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Gaming' ORDER BY rand() LIMIT 4"); |
|
| 281 | + $stmt->execute(); |
|
| 282 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 283 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 284 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 285 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 286 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 287 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 288 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 289 | + ?> |
|
| 290 | 290 | <div class="browse-item yt-tile-default "> |
| 291 | 291 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 292 | 292 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -326,16 +326,16 @@ discard block |
||
| 326 | 326 | </div> |
| 327 | 327 | <div class="browse-item-row ytg-box"> |
| 328 | 328 | <?php |
| 329 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 330 | - $stmt->execute(); |
|
| 331 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 332 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 333 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 334 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 335 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 336 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 337 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 338 | - ?> |
|
| 329 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
| 330 | + $stmt->execute(); |
|
| 331 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 332 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 333 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 334 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 335 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 336 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 337 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 338 | + ?> |
|
| 339 | 339 | <div class="browse-item yt-tile-default "> |
| 340 | 340 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 341 | 341 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -375,16 +375,16 @@ discard block |
||
| 375 | 375 | </div> |
| 376 | 376 | <div class="browse-item-row ytg-box"> |
| 377 | 377 | <?php |
| 378 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
| 379 | - $stmt->execute(); |
|
| 380 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 381 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 382 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 383 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 384 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 385 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 386 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 387 | - ?> |
|
| 378 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
| 379 | + $stmt->execute(); |
|
| 380 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 381 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 382 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 383 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 384 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 385 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 386 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 387 | + ?> |
|
| 388 | 388 | <div class="browse-item yt-tile-default "> |
| 389 | 389 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 390 | 390 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -424,16 +424,16 @@ discard block |
||
| 424 | 424 | </div> |
| 425 | 425 | <div class="browse-item-row ytg-box"> |
| 426 | 426 | <?php |
| 427 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
| 428 | - $stmt->execute(); |
|
| 429 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 430 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 431 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 432 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 433 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 434 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 435 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 436 | - ?> |
|
| 427 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
| 428 | + $stmt->execute(); |
|
| 429 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 430 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 431 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 432 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 433 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 434 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 435 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 436 | + ?> |
|
| 437 | 437 | <div class="browse-item yt-tile-default "> |
| 438 | 438 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 439 | 439 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -473,16 +473,16 @@ discard block |
||
| 473 | 473 | </div> |
| 474 | 474 | <div class="browse-item-row ytg-box"> |
| 475 | 475 | <?php |
| 476 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4"); |
|
| 477 | - $stmt->execute(); |
|
| 478 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 479 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 480 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 481 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 482 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 483 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 484 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 485 | - ?> |
|
| 476 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4"); |
|
| 477 | + $stmt->execute(); |
|
| 478 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 479 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 480 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 481 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 482 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 483 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 484 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 485 | + ?> |
|
| 486 | 486 | <div class="browse-item yt-tile-default "> |
| 487 | 487 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 488 | 488 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | <?php |
| 141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
| 142 | 142 | $stmt->execute(); |
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | <?php |
| 176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
| 177 | 177 | $stmt->execute(); |
| 178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | <?php |
| 211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
| 212 | 212 | $stmt->execute(); |
| 213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | <?php |
| 246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
| 247 | 247 | $stmt->execute(); |
| 248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | <?php |
| 281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
| 282 | 282 | $stmt->execute(); |
| 283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
| 285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
| 286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -138,16 +138,16 @@ discard block |
||
| 138 | 138 | </div> |
| 139 | 139 | <div class="browse-item-row ytg-box"> |
| 140 | 140 | <?php |
| 141 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 142 | - $stmt->execute(); |
|
| 143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | - ?> |
|
| 141 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 142 | + $stmt->execute(); |
|
| 143 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 144 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 145 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 146 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 147 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 148 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 149 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 150 | + ?> |
|
| 151 | 151 | <div class="browse-item yt-tile-default "> |
| 152 | 152 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 153 | 153 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -173,16 +173,16 @@ discard block |
||
| 173 | 173 | </div> |
| 174 | 174 | <div class="browse-item-row ytg-box"> |
| 175 | 175 | <?php |
| 176 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 177 | - $stmt->execute(); |
|
| 178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 180 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 181 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 182 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 183 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 184 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 185 | - ?> |
|
| 176 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 177 | + $stmt->execute(); |
|
| 178 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 179 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 180 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 181 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 182 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 183 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 184 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 185 | + ?> |
|
| 186 | 186 | <div class="browse-item yt-tile-default "> |
| 187 | 187 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 188 | 188 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -208,16 +208,16 @@ discard block |
||
| 208 | 208 | </div> |
| 209 | 209 | <div class="browse-item-row ytg-box"> |
| 210 | 210 | <?php |
| 211 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 212 | - $stmt->execute(); |
|
| 213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 215 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 216 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 217 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 218 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 219 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 220 | - ?> |
|
| 211 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 212 | + $stmt->execute(); |
|
| 213 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 214 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 215 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 216 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 217 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 218 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 219 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 220 | + ?> |
|
| 221 | 221 | <div class="browse-item yt-tile-default "> |
| 222 | 222 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 223 | 223 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -243,16 +243,16 @@ discard block |
||
| 243 | 243 | </div> |
| 244 | 244 | <div class="browse-item-row ytg-box"> |
| 245 | 245 | <?php |
| 246 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 247 | - $stmt->execute(); |
|
| 248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 250 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 251 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 252 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 253 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 254 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 255 | - ?> |
|
| 246 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 247 | + $stmt->execute(); |
|
| 248 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 249 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 250 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 251 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 252 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 253 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 254 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 255 | + ?> |
|
| 256 | 256 | <div class="browse-item yt-tile-default "> |
| 257 | 257 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 258 | 258 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -278,16 +278,16 @@ discard block |
||
| 278 | 278 | </div> |
| 279 | 279 | <div class="browse-item-row ytg-box"> |
| 280 | 280 | <?php |
| 281 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 282 | - $stmt->execute(); |
|
| 283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 285 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 286 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 287 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 288 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 289 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 290 | - ?> |
|
| 281 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
| 282 | + $stmt->execute(); |
|
| 283 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 284 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 285 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 286 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 287 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 288 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 289 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 290 | + ?> |
|
| 291 | 291 | <div class="browse-item yt-tile-default "> |
| 292 | 292 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 293 | 293 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | ?> |
| 176 | 176 | <?php |
| 177 | 177 | $stmt6 = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
| 178 | - $stmt6->bindParam(":search", $search); |
|
| 178 | + $stmt6->bindParam(":search", $search); |
|
| 179 | 179 | $stmt6->bindParam(":pfirst", $page_first_result); |
| 180 | 180 | $stmt6->bindParam(":pper", $results_per_page); |
| 181 | 181 | $stmt6->execute(); |
@@ -192,32 +192,32 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | <?php |
| 194 | 194 | while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
| 195 | - if($__video_h->video_exists($video['reciever'])) { |
|
| 196 | - $_video = $__video_h->fetch_video_rid($video['reciever']); |
|
| 197 | - $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
|
| 198 | - $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
|
| 199 | - $_video['duration'] = $__time_h->timestamp($_video['duration']); |
|
| 200 | - $_video['views'] = $__video_h->fetch_video_views($_video['rid']); |
|
| 201 | - $_video['author'] = htmlspecialchars($_video['author']); |
|
| 202 | - $_video['title'] = htmlspecialchars($_video['title']); |
|
| 203 | - $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
|
| 204 | - |
|
| 205 | - if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
| 206 | - $status = "Corrupted"; |
|
| 207 | - } else if($_video['visibility'] == "v") { |
|
| 208 | - $status = "Approved"; |
|
| 209 | - } else if($_video['visibility'] == "n") { |
|
| 210 | - $status = "Approved"; |
|
| 211 | - } else if($_video['visibility'] == "o") { |
|
| 212 | - $status = "Disapproved"; |
|
| 213 | - } else { |
|
| 214 | - $status = "Unknown"; |
|
| 215 | - } |
|
| 195 | + if($__video_h->video_exists($video['reciever'])) { |
|
| 196 | + $_video = $__video_h->fetch_video_rid($video['reciever']); |
|
| 197 | + $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
|
| 198 | + $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
|
| 199 | + $_video['duration'] = $__time_h->timestamp($_video['duration']); |
|
| 200 | + $_video['views'] = $__video_h->fetch_video_views($_video['rid']); |
|
| 201 | + $_video['author'] = htmlspecialchars($_video['author']); |
|
| 202 | + $_video['title'] = htmlspecialchars($_video['title']); |
|
| 203 | + $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
|
| 204 | + |
|
| 205 | + if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
| 206 | + $status = "Corrupted"; |
|
| 207 | + } else if($_video['visibility'] == "v") { |
|
| 208 | + $status = "Approved"; |
|
| 209 | + } else if($_video['visibility'] == "n") { |
|
| 210 | + $status = "Approved"; |
|
| 211 | + } else if($_video['visibility'] == "o") { |
|
| 212 | + $status = "Disapproved"; |
|
| 213 | + } else { |
|
| 214 | + $status = "Unknown"; |
|
| 215 | + } |
|
| 216 | 216 | |
| 217 | - if($_video['commenting'] == "a") |
|
| 218 | - $_video['commentstatus'] = "Commenting allowed"; |
|
| 219 | - else |
|
| 220 | - $_video['commentstatus'] = "Commenting disallowed"; |
|
| 217 | + if($_video['commenting'] == "a") |
|
| 218 | + $_video['commentstatus'] = "Commenting allowed"; |
|
| 219 | + else |
|
| 220 | + $_video['commentstatus'] = "Commenting disallowed"; |
|
| 221 | 221 | ?> |
| 222 | 222 | <tr style="margin-top: 5px;" id="videoslist"> |
| 223 | 223 | <td class="video-manager-left"> |
@@ -221,10 +221,11 @@ |
||
| 221 | 221 | $status = "Unknown"; |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | - if($_video['commenting'] == "a") |
|
| 225 | - $_video['commentstatus'] = "Commenting allowed"; |
|
| 226 | - else |
|
| 227 | - $_video['commentstatus'] = "Commenting disallowed"; |
|
| 224 | + if($_video['commenting'] == "a") { |
|
| 225 | + $_video['commentstatus'] = "Commenting allowed"; |
|
| 226 | + } else { |
|
| 227 | + $_video['commentstatus'] = "Commenting disallowed"; |
|
| 228 | + } |
|
| 228 | 229 | ?> |
| 229 | 230 | <tr style="margin-top: 5px;" id="videoslist"> |
| 230 | 231 | <td class="video-manager-left"> |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | <?php $__user_h = new user_helper($__db); ?> |
| 8 | 8 | <?php $__db_h = new db_helper(); ?> |
| 9 | 9 | <?php $__time_h = new time_helper(); error_reporting(E_ERROR | E_PARSE); ?> |
| 10 | -<?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
| 10 | +<?php if (!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
| 11 | 11 | <!DOCTYPE html> |
| 12 | 12 | <html dir="ltr"> |
| 13 | 13 | <head> |
@@ -160,15 +160,15 @@ discard block |
||
| 160 | 160 | $stmt->execute(); |
| 161 | 161 | |
| 162 | 162 | $number_of_result = $stmt->rowCount(); |
| 163 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 163 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
| 164 | 164 | |
| 165 | - if (!isset ($_GET['page']) ) { |
|
| 165 | + if (!isset ($_GET['page'])) { |
|
| 166 | 166 | $page = 1; |
| 167 | 167 | } else { |
| 168 | - $page = (int)$_GET['page']; |
|
| 168 | + $page = (int) $_GET['page']; |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - $page_first_result = ($page - 1) * $results_per_page; |
|
| 171 | + $page_first_result = ($page - 1)*$results_per_page; |
|
| 172 | 172 | ?> |
| 173 | 173 | <?php |
| 174 | 174 | $stmt6 = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | </tr> |
| 189 | 189 | |
| 190 | 190 | <?php |
| 191 | - while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 192 | - if($__video_h->video_exists($video['reciever'])) { |
|
| 191 | + while ($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 192 | + if ($__video_h->video_exists($video['reciever'])) { |
|
| 193 | 193 | $_video = $__video_h->fetch_video_rid($video['reciever']); |
| 194 | 194 | $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
| 195 | 195 | $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
@@ -199,19 +199,19 @@ discard block |
||
| 199 | 199 | $_video['title'] = htmlspecialchars($_video['title']); |
| 200 | 200 | $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
| 201 | 201 | |
| 202 | - if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
| 202 | + if ($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
| 203 | 203 | $status = "Corrupted"; |
| 204 | - } else if($_video['visibility'] == "v") { |
|
| 204 | + } else if ($_video['visibility'] == "v") { |
|
| 205 | 205 | $status = "Approved"; |
| 206 | - } else if($_video['visibility'] == "n") { |
|
| 206 | + } else if ($_video['visibility'] == "n") { |
|
| 207 | 207 | $status = "Approved"; |
| 208 | - } else if($_video['visibility'] == "o") { |
|
| 208 | + } else if ($_video['visibility'] == "o") { |
|
| 209 | 209 | $status = "Disapproved"; |
| 210 | 210 | } else { |
| 211 | 211 | $status = "Unknown"; |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | - if($_video['commenting'] == "a") |
|
| 214 | + if ($_video['commenting'] == "a") |
|
| 215 | 215 | $_video['commentstatus'] = "Commenting allowed"; |
| 216 | 216 | else |
| 217 | 217 | $_video['commentstatus'] = "Commenting disallowed"; |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | </div> |
| 258 | 258 | </center> |
| 259 | 259 | |
| 260 | - <?php for($page = 1; $page<= $number_of_page; $page++) { ?> |
|
| 260 | + <?php for ($page = 1; $page <= $number_of_page; $page++) { ?> |
|
| 261 | 261 | <button class="yt-uix-button yt-uix-button-default" onclick="ajax_fetch_videomanager(<?php echo $page; ?>)"><?php echo $page; ?></button> |
| 262 | 262 | <?php } ?> |
| 263 | 263 | |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | </script> |
| 304 | 304 | |
| 305 | 305 | <?php |
| 306 | - if($stmt6->rowCount() == 0) { echo " |
|
| 306 | + if ($stmt6->rowCount() == 0) { echo " |
|
| 307 | 307 | <br>Welcome to your favorite videos page.<br> |
| 308 | 308 | You can add videos that you like and the video will be added here! |
| 309 | 309 | "; |