<?php
session_start();

      $username = 'root';
      $passwordsc = 'jack22238';
      $dbName = 'IBMA_billing';
      $dbName = 'API_IBMA_billing_caliber_com_sg';
      MYSQL_CONNECT($hostname, $username, $passwordsc) OR DIE(MYSQL_error());    
     @mysql_select_db( "$dbName") or die( "Unable to select database");
      mysql_set_charset('utf8');
      date_default_timezone_set("Asia/Singapore");
?>

