View difference between Paste ID: wG6xFZ5f and r5uE4K9j
SHOW: | | - or go back to the newest paste.
1
<!doctype html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>Sistem Informasi Pengalaman Lapangan Industri</title>
6
<link href="<?php echo base_url();?>assets/css/style.css" rel="stylesheet" type="text/css" media="screen" />
7
</head>
8
9
<body>
10
11
<div id="wrapper">
12
13
  <header>
14
    	<img src="<?php echo base_url();?>assets/images/banner.png" width="1000" height="200">
15
      </header>
16
17
<nav>
18
  	<ul>
19
    	<li><a href="<?php base_url();?>home">Home</a></li>
20
        <li><a href="<?php base_url();?>user">User</a></li>
21
        <li><a href="<?php base_url();?>infouhi">Info</a></li>
22
        <li><a href="<?php base_url();?>konfirmasiuhi">Data Mahasiswa</a></li>
23
        <li class="active"><a href="<?php base_url();?>laporanmahasiswa">Laporan PLI</a></li>
24
        <li><a href="<?php base_url();?>nilaiakhirPLI">Nilai PLI</a></li>
25
		<li><a href="<?php base_url();?>tampilan">Logout</a></li>
26
    </ul>
27
  </nav>
28
 
29
  <table  class="table table-bordered table-striped">
30
         <thead>
31
            <tr>
32
                <th>Nim</th>
33
                <th>Nama Mahasiswa</th>
34
                <th>No Hp</th>
35
                <th>Tahun Masuk</th>
36
                <th>Dosen Pembimbing</th>
37
                <th>Perusahaan</th>
38
                <th>Action</th>
39
            </tr>
40
        </thead>
41
        <tbody>
42
          
43-
                foreach ($dataMahasiswa as $data) : //ngabsen data
43+
44
  <?php 
45
			
46
			 foreach ($dataMahasiswa ->result() as $data) {  ?>
47
            <tr>
48
                <td><?php echo $data->nim; ?></td> //manggil data id_transaksi
49
                <td><?php echo $data->nama_mhs; ?></td>
50
                <td><?php echo $data->nohp; ?></td>
51
                <td><?php echo $data->tm; ?></td>
52
                <td><?php echo $data->nama_dsn; ?></td>
53
                <td><?php echo $data->nm_perusahaan;?></span></td>
54
            </tr>
55-
                endforeach;
55+
56
               }
57
            ?>
58
        </tbody>
59
    </table>
60
 <div class="clearfix"></div>
61
    <footer>Sistem Informasi PLI</a> | &copy;by Yeni Septiana - 1102640</footer></div>
62
</body>
63
</html>