Advertisement
j0h4n54ntr1

vwel

Jul 13th, 2018
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.39 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. ?><!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6.     <meta charset="utf-8">
  7.     <title>Welcome to CodeIgniter</title>
  8. <style>
  9. table, th, td {
  10.     border: 1px solid black;
  11.     border-collapse: collapse;
  12. }
  13. th, td {
  14.     padding: 15px;
  15. }
  16. </style>
  17.    
  18. </head>
  19. <body>
  20.  
  21. <div id="container">
  22.     <h1>Welcome to CodeIgniter!</h1>
  23.     <a href="<?php echo base_url()?>index.php/welcome/add" >tambah</a>
  24.     <br>
  25.     <?php  if ($this->session->flashdata('sukses')) {
  26.    
  27.         echo $this->session->flashdata('sukses');
  28.      }
  29.     ?>
  30.     <div id="body">
  31.         <table>
  32.             <tr>
  33.                 <th>nama </th>
  34.                
  35.                 <th>umur</th>
  36.                 <th>telpn</th>
  37.                 <th>alamat</th>
  38.             </tr>
  39.             <tbody>
  40.                 <?php foreach ($member as $key ) {?>
  41.                 <tr>
  42.                     <th><?php echo $key->nama_depan;?> <?php echo $key->nama_belakang;?></th>
  43.                    
  44.                     <th><?php echo $key->umur;?></th>
  45.                     <th><?php echo $key->tlpn;?></th>
  46.                     <th><?php echo $key->alamat;?></th>
  47.                 </tr>
  48.                 <?php } ?>
  49.             </tbody>
  50.         </table>
  51.         <p>If you are exploring CodeIgniter for the very first time, you should start by reading the <a href="user_guide/">User Guide</a>.</p>
  52.     </div>
  53.  
  54.     <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo  (ENVIRONMENT === 'development') ?  'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
  55. </div>
  56.  
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement