Membuat aplikasi CRUD Bootsrap dengan PHP MySQL
Dalam tutorial ini kita akan membuat sebuah contoh aplikasi sistem informasi sederhana dengan Bootstrap sebagai front-end (In this tutorial, we'll develop a simple information system application with Bootstrap as front-end).
Berikut ini output dari akhir tutorial dengan mengclick link Live Preview ( Here is the output of the final tutorial by clicking Live Preview).
Live Preview
Jika anda telah melihat live preview, tentunya anda sudah ada bayangan kita akan membuat aplikasi apa. Dalam tutorial ini kita akan membagi dua percobaan (If you have seen the live preview, of course you have understood what aplication that we will do ?. In this tutorial, we divide it in two sections):
- Percobaan pertama, fokus pada pembuatan interface (First section, we concern about developing interface).
- Percobaan kedua, kita mengimplementasikan php dengan database (Second section, we implement php with database).
Percobaan pertama (First section)
Pada percobaan pertama, terdapat lima buah file yang terdiri dari(In the first section, there are five sections which contain):
Step -1 : Membuat file index.html (Create file index.html)
Pada file index.htm terdapat 4 tombol berupa (In file index.html there 4 buttons) :
- Insert data,proses untuk mencreate data (Insert data where we create data).
- Read
- Update
- Delete
index.html |
Step -2 : Membuat file insert.html (Create file insert.html)
insert.html |
Step -3 : Membuat file read.html (Create file read.html)
read.html |
Step -4 : Membuat file update.html (Create file update.html)
update.html |
Step -5 : Membuat file delete.html (Create file delete.html)
delete.html |
Percobaan kedua (Second section)
Step -1 : Membuat database (Create database)
Buatlah database yang diberinama biodata dan tabel users seperti dibawah ini (Create a database "biodata" and table "users" as show by script sql below):