D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
bambooinn.in
/
Filename :
articles.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <?php include'style.php'; ?> </head> <body> <div class="page"> <?php include'header.php'; ?> <main> <div class="jumbo_section"> <div class="jumbo_text"> <h1>WB Casting Articles</h1> <ul class="list-inline jumbo_list"> <li><a href="./">Home</a></li> <li>/</li> <li><a href="">Our Articles</a></li> </ul> </div> </div> <!-- Featured news & events --> <section class="well-4 article_section"> <div class="container container-wide"> <h4 class="section_title text-black">Featured <span>Articles & Events</span></h4> <hr class="hr2"> <div class="row"> <?php $view_news = "select * from news"; $run_qry = mysqli_query($conn, $view_news); if($run_qry-> num_rows > 0){ while($row = mysqli_fetch_assoc($run_qry)) { $news_id = $row['news_id']; $news_title = $row['news_title']; $news_type = $row['news_type']; $news_date = $row['news_date']; $news_place = $row['news_place']; $news_content = $row['news_content']; $news_img = $row['news_img']; ?> <div class="col-lg-4 col-sm-6"> <article class="post"> <img class="img-wide" src="admin/news-images/<?php echo $news_img; ?>" alt="<?php echo $news_title; ?>"/> <div class="post__meta"> <time datetime="2016-01-01"><?php echo $news_date; ?></time> </div> <h5><a href="#"><?php echo $news_title; ?></a></h5> <p><?php echo $news_content; ?> </p> <!-- <div class="btnDiv"> <a href="#" class="btn_hover btn_view">Read more</a> </div> --> </article> </div> <?php } }?> <!-- <div class="col-lg-4 col-sm-6"> <article class="post"> <img class="img-wide" src="images/casting/event01.jpg" alt=""/> <div class="post__meta"> <time datetime="2016-01-01">01.02.2016</time> </div> <h5><a href="#">How to build Teen Model Portfolio </a></h5> <p>Modeling portfolio is essential item for people who want to involve and join in modeling industry. Modeling portfolio is pictographic resume of body performance pictures...</p> <div class="btnDiv"> <a href="#" class="btn_hover btn_view">Read more</a> </div> </article> </div> --> </div> </div> </section> </main> <?php include'footer.php'; ?> </body> </html>