Langkah-langkah CRUD di PHP dengan MySQL
1. Buat file untuk koneksi ke MySQL dan database
<?php
mysql_connect('localhost','root','') or die('error koneksi');
mysql_select_db("siswa") or die ("data base eweh!!")
?>
2. Buat file untuk tabel yang akan dioperasikan
3. Panggil file koneksi ke file tadi save, test
include("koneksi.php");
4. Buatlah function formInput(), input(), tampil(),...