arsiarne

Menu

Mar 26th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php
  2. include"modul/menu_kiri.php";
  3. $jurusan = $_SESSION['jurusan'];
  4. ?>
  5.  
  6. <div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
  7. <h1 class="page-header"><span class="glyphicon glyphicon-book"></span> &nbsp Menu Test</h1>
  8.  
  9.           <div class="row ">
  10.             <ul class="nav nav-sidebar ">
  11.                 <?php
  12.                     $sql ="SELECT * FROM  `menu` ";
  13.                     $query= mysql_query($sql);
  14.                     while ($row= mysql_fetch_array($query)){                   
  15.                 ?>
  16.                     <li><a href="index_user.php?halaman=mapel&id=<?php echo $row[1]?>"><span class="glyphicon glyphicon-book"></span>&nbsp <strong><?php if ($row[1]==1){echo"Latihan";}else{echo"Try Out";}?> </strong></a></li>              
  17.                 <?php
  18.                 }
  19.                 ?>
  20.             </ul>
  21.           </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment