一般申請需知
常見問題 | 內容存放需知 | 其他問題
常見技術問題
網頁問題 | 電郵Email | FTP | CGI |
討論區 | 網上商店
管理域名
".com/ .net " | ".hk/ .com.hk "
伺服器使用問題
Linux(CPanel) | Window (Helm)
特別個案支援
甚麼是Zone Record ?
 
 
技術支援 > 伺服器使用問題 > Linux伺服器(CPanel)
伺服器使用問題 > Linux伺服器(CPanel)
  Perl/DBI , PHP/MySQL (MySQL setting)
  Connecting to database
 

e.g. Database Name : test

Database Username : tester

Database password : 123456

 
  Perl
 

$dbh = DBI->connect("DBI:mysql:test:localhost","tester","123456");

 
 
  PHP
 

$dbh=mysql_connect ("localhost", "tester", "123456") or die ('Failed to connect to the database.');

mysql_select_db ("test");