Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <?php
  5.         require_once "funtions/functions.php";
  6.         $news = getNews();
  7.     ?>
  8.     <meta charset="utf-8">
  9.     <title>MySite1 Main</title>
  10.     <link rel="stylesheet" href="css/style.css" type="text/css">
  11.  
  12. </head>
  13. <body>
  14.     <div id="main-wrapper">
  15.         <?php require_once "blocks/header.php" ?>
  16.        
  17.         <div class="content">
  18.             <?php
  19.                 for ($i = 0; $i < count($news); $i++) {
  20.                      echo '<p>'.$news[$i]["TEXT"].'</p>';
  21.                      echo '<p>'.$news[$i]["TEXT"].'</p>';
  22.                      echo '<p>'.$news[$i]["TEXT"].'</p>';
  23.                                          
  24.                     // echo "<p>uihidf</p>";
  25.                 }
  26.             ?>
  27.         </div>
  28.         <div class="appendix"></div>
  29.    
  30.     </div>
  31.     <?php require_once "blocks/footer.php" ?>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement