GIF89a
| Server IP : 200.152.183.196 / Your IP : 216.73.216.150 Web Server : nginx/1.20.2 System : Linux server.teclabs.com.br 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : re8rc56e54 ( 10140) PHP Version : 7.3.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/cial.ind.br/httpdocs/ |
Upload File : |
<?
include('includes/header.php');
?>
<div class="page-title-area">
<div class="d-table">
<div class="d-table-cell">
<div class="container">
<div class="page-title-content">
<ul>
<li><a href="home"><i class="fas fa-home"></i></a></li>
<li><a href="servico/"><?=$lang_menu_videos?></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 mt-30 mb-30">
<div class="title">
<h3 class="text-light-black header-title"><?=$lang_menu_videos?></h3>
</div>
</div>
<section class="pb-100">
<div class="container-fluid">
<div class="row">
<div class="col-md-12" id="">
<div class="row">
<?
$query = query("SELECT * FROM videos WHERE VISIVEL=1 ORDER BY $pkey DESC");
foreach($query as $campo){
$campo = (object) $campo;
$ytb = htmlentities_2(($language == 'enus'?$campo->YOUTUBE2:($language == 'eses'?$campo->YOUTUBE3:$campo->YOUTUBE1)));
if($ytb){
$ytb = explode('watch?v=', $ytb);
$ytb = $ytb[1];
echo '<div class="col-md-3 mb-4">
<iframe src="https://www.youtube.com/embed/'.$ytb.'" class="row iframe-youtube" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>';
}
}
?>
</div>
</div>
</div>
</div>
</section>
<?
include('includes/footer.php');
?>