NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<?php require_once 'parts/func/fonksiyon.php'; ?>
<!doctype html>
<html lang="en">

<head>

<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="<?php echo $arow->site_baslik; ?>">
<meta name="description" content="<?php echo $arow->site_desc; ?>">
<meta name="keywords" content="<?php echo $arow->site_keyw; ?>">

<title><?php echo $arow->site_baslik; ?></title>

<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,600">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">


<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/pagination.css">
<link rel="stylesheet" href="assets/css/media-queries.css">
<link rel="stylesheet" href="assets/css/carousel.css">
<link rel="stylesheet" href="assets/css/mainpage.css">
<link rel="stylesheet" href="assets/css/navbar.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link rel="stylesheet" href="assets/js/sweetalert/sweetalert.css">


<!-- Favicon and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">

</head>

<body>

<!-- START OF NAV -->
<nav>
<div class="logo">
<h4><a href="<?php echo $arow->site_url; ?>"><?php echo $arow->site_baslik; ?></a></h4>
</div>
<ul class="navlinks">
<li>
<a href="<?php echo $arow->site_url; ?>" class="fas fa-home" id="homebutton"></a>
</li>
<li>
<a href="<?php echo $arow->site_url . '/istekler.php'; ?>">Film İstekleri</a>
</li>
<li>
<a href="<?php echo $arow->site_url . '/iletisim.php'; ?>">İletişim</a>
</li>
<li>
<form action="ara.php">
<input type="text" name="search" placeholder="Ara.."><i class="fas fa-search"></i></input>
</form>
</li>
</ul>
</nav>
<!-- END OF NAV -->
<section class="mainbody">
<!-- START OF TABS -->
<!-- Tab links -->
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'sonfilm')" id="defaultOpen">Son Eklenen Filmler</button>
<button class="tablinks" onclick="window.location.href = '<?php echo $arow->site_url; ?>/mostview.php'">En Çok İzlenen Filmler</button>
<button class="tablinks" onclick="window.location.href = '<?php echo $arow->site_url; ?>/alphabetical.php'">Alfabetik Sıralama</button>
</div>

<!-- START OF FIRST TAB -->
<div id="sonfilm" class="tabcontent">
<div class="sonfilmlist">

<?php

$s = @intval($_GET['s']);
if (!$s) {
$s = 1;
}

$sorgu = $db->prepare(
"SELECT film_kat_id,film_durum FROM filmler
INNER JOIN kategoriler ON kategoriler.id = filmler.film_kat_id
WHERE film_durum=:d "
);
$sorgu->execute([':d' => 1]);

$toplam = $sorgu->rowCount();
$lim = 9;
$goster = $s * $lim - $lim;

$sorgu = $db->prepare(
"SELECT * FROM filmler
INNER JOIN kategoriler ON kategoriler.id = filmler.film_kat_id
WHERE film_durum=:d ORDER BY film_tarih DESC LIMIT :goster,:lim"
);

$sorgu->bindValue(":d", (int) 1, PDO::PARAM_INT);
$sorgu->bindValue(":goster", (int) $goster, PDO::PARAM_INT);
$sorgu->bindValue(":lim", (int) $lim, PDO::PARAM_INT);
$sorgu->execute();


if ($s > ceil($toplam / $lim)) {
$s = 1;
}

if ($sorgu->rowCount()) {

foreach ($sorgu as $row) {

?>
<a class="tabimage" href="<?php echo $arow->site_url; ?>/filmdetay.php?film_sef=<?php echo $row['film_sef']; ?>&id=<?php echo $row['film_id']; ?>">
<div class="tabfilmcontent">
<img src="<?php echo $row['film_resim']; ?>" alt="<?php echo $row['film_baslik']; ?>">
<div class="movieinfo">
<span id="imdb" class="imdbRatingPlugin" data-title="<?php echo $row['film_imdb']; ?>" data-style="p3">IMDb: </span>
<span class="viewcount"><i class="fas fa-eye"></i> <?php echo $row['film_izlenme']; ?> İzlenme</span>
<span class="moviename"><?php echo $row['film_baslik']; ?></span>
</div>
</div>
</a>

<?php } ?>

<ul class="pagination">
<?php

if ($toplam > $lim) {
pagination($s, ceil($toplam / $lim), '?s=');
}

?>
</ul>

<?php

} else {
echo '<div class="alert alert-danger">Henüz film eklenmedi.</div>';
} ?>

</div>
</div>
<!-- START OF SECOND TAB -->
<div id="mostview" class="tabcontent">
<div class="sonfilmlist"></div>
</div>
<!-- START OF THIRD TAB -->
<div id="alphebetic" class="tabcontent">
<div class="sonfilmlist"></div>
</div>
<!-- END OF TABS -->
<!-- START OF SIDEBAR -->
<div class="sidebar">
<div class="language">
<h4 class="langtitle">Dil'e Göre Filmler</h4>
<ul class="langlist">
<?php

$diller = $db->prepare("SELECT * FROM dil");
$diller->execute();
if ($diller->rowCount()) {
foreach ($diller as $row) {
echo '<li><a href="dil.php?dil_sef=' . $row['dil_sef'] . '">' . $row['dil_adi'] . '</a></li>';
}
}

?>
</ul>
</div>
<div class="genre">
<h4 class="genretitle">Tür'e Göre Filmler</h4>
<ul class="genrelist">

<?php

$kategoriler = $db->prepare("SELECT * FROM kategoriler");
$kategoriler->execute();
if ($kategoriler->rowCount()) {
foreach ($kategoriler as $row) {
echo '<li><a href="kategoriler.php?kat_sef=' . $row['kat_sef'] . '">' . $row['kat_adi'] . '</a></li>';
}
}

?>


</ul>
</div>
</div>
<!-- END OF SIDEBAR -->
</section>
<!-- START OF FOOTER -->

<footer>
<p><i class="far fa-copyright"></i> Tüm Hakları Saklıdır.</p>
<p>
Sitemizde bulununan film, fragman, ve çeşitli içerikler
"Youtube" gibi ortamlardan siteye eklenmiştir
hiçbiri kendi server'ımızda bulunmuyordur. Bu yüzden
<?php echo $arow->site_url; ?> sitesi hiçbir yasal hükümlülüğe
tabi tutulamaz. E-mail ile bildirmeniz durumunda hak sahibi
olduğunuz içerik siteden kaldırılacaktır.
</p>
<div class="social">
<?php

$sosyalmedya = $db->prepare("SELECT * FROM sosyalmedya WHERE durum=:d");
$sosyalmedya->execute([':d' => 1]);
if ($sosyalmedya->rowCount()) {
foreach ($sosyalmedya as $item) {
?>
<a class="social" href="<?php echo $item['link']; ?>" target="_blank"><i class="fab fa-<?php echo $item['ikon']; ?>"></i></a>
<?php
}
}

?>
</div>
</footer>

<!-- END OF FOOTER -->
<!-- Javascript -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<script src="assets/js/jquery-migrate-3.0.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script src="assets/js/jquery.backstretch.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="assets/js/tabs.js"></script>
<script src="assets/js/imdb.js"> </script>
<script src="assets/js/ajax.js"> </script>
<script src="assets/js/disqus.js"> </script>
<script src="assets/js/sweetalert/sweetalert.min.js"> </script>


</body>

</html>
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.