Sunday, May 25, 2014

How to connect to database config.php

How is that we create a php file, to connect to the database
First we need to check, the application is installed or not xampp and service for apache and mysqlnya already way or not?
if it had stayed we make koneksi.php file / config.php



<?php
//host yang digunakan
//99,9% tidak perlu dirubah
$host = 'localhost'; 

//username untuk login ke host
//biasanya didapatkan pada email konfirmasi order hosting
$user = 'root'; 

//jika menggunakan PC sendiri sebagai host,
//secara default password dikosongkan
$pass = '';

//isikan nama database sesuai database
$dbname = 'dbname';

//mengubung ke host
$connect = mysql_connect($host, $user, $pass) or die(mysql_error());

//memilih database yang akan digunakan
$dbselect = mysql_select_db($dbname);

?>