Advertisement
H4nk

tampil.php

Oct 21st, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <html>
  2.     <body>
  3.         <table border='1' align='center'>
  4.             <tr><th>id Mobil</th><th>Ket</th><th>Aksi</th></tr>
  5.            
  6.                 <?php
  7.        
  8.                     include 'config.php';
  9.                    
  10.                     $query = "SELECT * FROM mobil ";
  11.                     $exe = mysql_query($query);
  12.                     $no = 1;
  13.                     while($row = mysql_fetch_assoc($exe)){
  14.                        
  15.                         $a = $row['id'];
  16.                         $b = $row['ket'];
  17.                                          
  18.                     echo "<tr><td>$a</td><td>$b</td><td><a href='simpan.php?id=$a'> SIMPAN </a> </td></tr>";
  19.                     $no++;
  20.                     }
  21.                
  22.                 ?>
  23.            
  24.        
  25.         </table>
  26.    
  27.     </body>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement