baglan.php :

$db = array(
  'host' => 'localhost',
  'user' => 'root',
  'pass' => '',
  'name' => 'db_adi'
);

if(!mysql_connect($db['host'], $db['user'], $db['pass']))
  die('Veritabanı bağlantı hatası!');

if(!mysql_select_db($db['name']))
  die('Veritabanı bulunamadı!');