phpMyAdmin

0 Comments

https://www.phpmyadmin.net

version 5.2.0

MySQLサーバをウェブブラウザで管理(GUI)するためのデータベース接続クライアントツールで、PHPで実装されている。

PHPが動作するWebサーバーに入れるだけで利用できます。

設定

「config.sample.inc.php」をコピーし、「config.inc.php」を作成します。

$cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = 'root';      // MySQL user
$cfg['Servers'][$i]['password']      = 'root';      // MySQL password (only needed

「auth_type」

「config」

「cookie」UserIDとパスワードを入力してログインできるようになります。

XAMPPMAMPを使うとすぐに利用できます。

Related Posts