feel9s
【 How-To / phpMyAdmin 】
* Download
* Install
  1. 解壓縮 phpMyAdmin-2.10.1-all-languages-utf-8-only.zip
    C:\Program Files\Apache Group\Apache2\htdocs\phpMyAdmin
  2. 將以下內容設定好,存檔為 config.inc.php 並存放到 C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\phpMyAdmin\

    <?php
    /* Servers configuration */
    $i = 0;
    /* Server localhost (config:root) [1] */
    $i++;
    $cfg['Servers'][$i]['host'] = 'localhost';
    $cfg['Servers'][$i]['extension'] = 'mysqli';
    $cfg['Servers'][$i]['connect_type'] = 'tcp';
    $cfg['Servers'][$i]['compress'] = false;
    $cfg['Servers'][$i]['auth_type'] = 'config';
    $cfg['Servers'][$i]['user'] = 'root';
    $cfg['Servers'][$i]['password'] = '你的資料庫密碼';
    /* End of servers configuration */
    ?>
  3. 開啟瀏覽器,輸入網址 http://localhost/phpMyAdmin/index.php 即可使用~

All content on this website is licensed under a Creative Commons License and is copyrighted © 2004 by meiji.