Contoh script php mengupdate data MySQL disimpan dengan nama updatebarang.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 |
<html> <head> <title>eMeReR.com | Muhammat Rasid Ridho</title> </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 // emerer.com // 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 sebuah query $sql = " update $table_name set NamaBarang = '$_POST[NamaBarang]', Satuan = '$_POST[Satuan]', Qty = '$_POST[Qty]' where KodeBarang = '$_POST[KodeBarang]'"; $result = @mysql_query($sql,$connection) or die(mysql_error()); echo "Data berhasil diupdate <br><br>"; echo "<a href=\"lihatbarang.php\"> Lihat Data </a>"; ?> </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.