Posted by Belajar Pemrograman
Script pembuatan database menggunakan php
<?php
$host="localhost";
$user="root";
$pass="";
$koneksi=mysql_connect($host,$user,$pass);
$query="create database belprog.blogspot.com";
$db=mysql_query($query);
if($db)
{
echo "Database Berhasil Dibuat";
}
else
{
echo "Database Gagal Dibuat";
}
?>