PHP CRUD Bootstrap part 1
Edisi tutorial kali ini akan membahas tentang CRUD. CRUD merupakan singkatan dari Create, Read, Update dan Delete. Penggunaan CRUD sangat penting, terutama bila sebuah aplikasi dihubungkan dengan database. Database yang digunakan adalah MySQL, sedangkan untuk layoutnya kita menggunakan Bootstrap sebagai front-end (In this edition's tutorial,we deal with CRUD. CRUD is an acronym for Create, Read, Update and Delete. The usage of CRUD is very important, especially when an application connected to database. We use MySQL as database, whereas for layout we use Bootstrap as front-end).
Untuk tutorial CRUD ini, kita membagi ke dalam beberap artikel. Untuk artikel dalam tutorial ini kita akan membahas tentang Create dan View semua data dari database. Untuk artikel pembahasan berikutnya, silahkan klik pada link paling bawah :To be Continued (For CRUD tutorial, we divide into several articles. In this tutorial, we concern the explanation about Create and View all data from database. For next explanation, please click link at the bottom "To be Continued" ).
Silahkan klik link Live Preview dibawah untuk mengetahui target dari output tutorial ini (Please click link Live Preview below to find out the target of the tutorial output).
File index.php menampilkan semua data dari database. Dan pada file ini tersedia pilihan insert data, read, update dan delete (File index.php display all data from database. And on this file there are option : insert data, read, update and delete).
Anda dapat mengdownload keseluruhan file dilink bawah ini ( You can downloan all source code on the link below):
Untuk databasenya, anda dapat mengdownload dilink berikut (For database, you can download at the following link):
Untuk pembahasan berikutnya klik next dibawah (For next explanation click on the link next below).
Untuk tutorial CRUD ini, kita membagi ke dalam beberap artikel. Untuk artikel dalam tutorial ini kita akan membahas tentang Create dan View semua data dari database. Untuk artikel pembahasan berikutnya, silahkan klik pada link paling bawah :To be Continued (For CRUD tutorial, we divide into several articles. In this tutorial, we concern the explanation about Create and View all data from database. For next explanation, please click link at the bottom "To be Continued" ).
Silahkan klik link Live Preview dibawah untuk mengetahui target dari output tutorial ini (Please click link Live Preview below to find out the target of the tutorial output).
Step-1 :
Membuat database seperti dibawah ini (Creating database as shown below).Step-2 :
Membuat file connection.php. File ini berfungsi untuk menghubungkan dengan database. Kita asumsikan host, username, password dan nama database seperti script dibawah ini (Creating file connection.php. This file is used to connect to database. We assume host, username, password and database name as the script below) :Step-3 :
Membuat file index.php, pastikan sebelumnya anda telah mendownload Bootstrap. Jika belum, jangan khawatir, kami menyertakannya saat anda mengdownload keseluruhan source code tutorial ini (Creating file index.php, make sure you have downloaded Bootstrap. If not yet, don't be worry, we attach it when youd download all source code of this tutorial).File index.php menampilkan semua data dari database. Dan pada file ini tersedia pilihan insert data, read, update dan delete (File index.php display all data from database. And on this file there are option : insert data, read, update and delete).
Step-4:
Membuat file insert.php. File ini bertujuan untuk mengcreate data baru yang akan disimpan ke dalam database (Creating file insert.php. This file is used to create new data that will be stored into database).Anda dapat mengdownload keseluruhan file dilink bawah ini ( You can downloan all source code on the link below):
Untuk databasenya, anda dapat mengdownload dilink berikut (For database, you can download at the following link):
Untuk pembahasan berikutnya klik next dibawah (For next explanation click on the link next below).