首先下載PhpMyAdmin軟件,將此文件包解壓 找到其中的一個文件: config.inc.php(或者如config.*等, 該文件名會因phpmyadmin版本不同, 而有所差別) 修改以下配置: $cfgServers[1]['host'] = 'localhost'; // MySQL hostname $cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port $cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket $cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket') $cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only $cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables) $cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication? $cfgServers[1]['user'] = '數據庫用戶名'; // MySQL user(此項需要設置) $cfgServers[1]['password'] = '數據庫密碼'; // MySQL password (only needed with basic auth) (此項需要設置) $cfgServers[1]['only_db'] = ''數據庫名稱'; // If set to a db-name,...(此項需要設置) 然后您ftp到您的網站, 在您的網站下建立一個目錄phpmyadmin, 把phpmyadmin所有文件上傳到該目錄下訪問http://'yourdomain.com/phpmyadmin, 即可管理您的數據庫了." 在您建好您的數據庫后, 記得把這些phpadmin的文件移走, 否則便讓任何人都可以管理您的數據庫了.