$select_gallery=mysqli_query($conn,"select * from gallery where 1=1 $subqry order by id desc ");
if(mysqli_num_rows($select_gallery)>>0){
?>
$SNo = 0;
while($row_gallery=mysqli_fetch_array($select_gallery))
{
$SNo = $SNo + 1;
$gallery_id=$row_gallery['id'];
$title=$row_gallery['title'];
$youtube_url=$row_gallery['youtube_url'];
$status=$row_gallery['status'];
$description=$row_gallery['description'];
$created_datetime=$row_gallery['created_datetime'];
?>
} } ?>