Membuat Message Board dengan PHP dan MySql
Jika anda menggunakan mysql client standard (console) berikut langkah-langkahnya : root: mysql �h localhost �u root �p password Berikut penjelasannya : => Localhost, adalah alamat host dari MySQL server => Password, adalah password untuk akses ke MySQL => Server Root, adalah user untuk akses ke MySQL server Dan jika anda berhasil mengakses ke MySQL server maka akan muncul pesan seperti : Welcome to the MySQL monitor. Commands end with ; or Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 35901 to server version: 4.0.12-standard-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> Setelah anda berhasil mengakses kedalam MySQL server buatlah satu database, caranya mysql> CREATE DATABASE namadatabase Atau jika sudah memiliki database dan anda ingin menggunakan database tersebut untuk menyimpan datanya : mysql > use namadatabase Selanjut...