Contoh script php lihat data MySQL disimpan dengan nama: lihatbarang.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
<html> <head> <title>Lihat Barang</title> </head> <body> <?php // tentukan nama tabel dan database $db_name = "dbmrr"; $table_name = "barang"; //koneksi ke server dan pilihdatabase $connection = @mysql_connect("localhost" , "root" , "" ) or die (mysql_error()); $db = @mysql_select_db ($db_name, $connection ) or die (mysql_error()); //membangun query $sql= "select KodeBarang, NamaBarang, Satuan, Qty from $table_name order by KodeBarang"; $result = @mysql_query($sql,$connection) or die (mysql_error()); // buat daftar hasil yang ditemukan ?> <html> <head> <title>eMeReR.com | Muhammat Rasid Ridho</title> <!--Membuat Fungsi konfirmasi penghapusan data--> <script language="javascript"> function konfirmasi(KodeBarang) { tanya=confirm('Apakah anda yakin Data tersebut akan dihapus ?'); if (tanya==true) return true; else return false; } </script> <!--End fungsi--> </head> <body> <table width="100%" height="100%" border="5"> <tr height="10%" bgcolor="lime"> <td colspan="2" align="center"> <?php // Memanggil header.php include ("header.php"); ?> </td> </tr> <tr height="80%" valign="top"> <td width="150" bgcolor="lime"> <?php // Memanggil menu.php include ("menu.php"); ?> </td> <td> <?php // ISI ?> <center><h3>Laporan Data Barang</h3></center> <table style="width: 100%" border="1"> <tr> <td>Kode Barang</td> <td>Nama Barang</td> <td>Satuan</td> <td>Quantity</td> <td>Menu</td> </tr> <?php while($row = mysql_fetch_array($result)) { $KodeBarang= $row['KodeBarang']; $NamaBarang = $row['NamaBarang']; $Satuan = $row['Satuan']; $Qty = $row['Qty']; ?> <tr> <td><?php echo $KodeBarang ?></td> <td><?php echo $NamaBarang ?></td> <td><?php echo $Satuan ?></td> <td><?php echo $Qty ?></td> <td> <a href="editbarang.php?KodeBarang=<?php echo$KodeBarang?>">Edit</a> | <a href="deletebarang.php?KodeBarang=<?php echo $KodeBarang ; ?> " onClick="return konfirmasi(<?php echo $KodeBarang ; ?>)">Hapus</a> </tr> <?php } ?> </table> </td> </tr> <tr height="10%" bgcolor="lime"> <td colspan="2" align="center"> <?php // Memanggil footer.php include ("footer.php"); ?> </td> </tr> </table> </body> </html> |
Berikut ini merupakan file pendukung lainnya, silahkan coba file php di bawah ini.