MVGEN Archive
if ($search){
$result = mysqli_query($db , "SELECT * FROM pack_song where title LIKE '%$search%' or artist LIKE '%$search%' and process_flag = 2 ORDER BY creation_date DESC");
//$result = mysqli_query($db, "SELECT * FROM pack_song where title LIKE '%$search%'");
//$result = mysqli_query($db, "SELECT * FROM pack_song");
$rowcount = mysqli_num_rows($result);
while ($ratch = mysqli_fetch_array($result)) {
$video_id = $ratch["id"];
$artist = $ratch["artist"];
$title = $ratch["title"];
$running_time = $ratch["running_time"];
$video_link = $ratch["video_link"];
$youtube_link = $ratch["youtube_link"];
$creation_date = $ratch["creation_date"];
$video_still = $ratch["video_still"];
$views = 0;
if (!$video_still){
$video_still = "./mvgen_placeholder.png";
} else { $video_still = "./video/stills/" . $video_still; }
?>
by echo $artist; ?>
} }?>
echo gmdate("H:i:s", $running_time); ?>