Gosu.pl

DBKiss - PHP admin for MySQL, PostgreSQL, SQLite

DBKiss is a single-php-file admin script for mysql, postgresql and sqlite databases (sqlite available in 2.00).
It is easy to upload to your webserver because it is only a single file.
It's very straightforward to use and the interface is kept clear and simple.

Download Stable

Version 1.13: dbkiss.zip [36 KB] (2012-01-07) see changelog
License: BSD revised (free for any use)
Author: Czarek Tomczak ()
Subscribe to new releases: http://freshmeat.net/projects/dbkiss/

Download 2.00 Beta

This version introduces support for SQLite databases (read section "SQLite configuration" in comments at the top of the file), new layout is still unfinished and some stuff might not work, hence the "Beta".

Version 2.00 Beta: dbkiss2.zip [61 KB] (2012-01-07)

Donations

Did you know?

Sql editor features

Notes

Screenshot

DBKiss - php database browser - screenshot

Auto connect script

This little script will automatically connect to given database, so you don't have to fill the data on the connect screen anymore. This is useful on local developer machine, or if you already have some directory protection and asking for the password again is not needed.

"mysql_local.php" source:

<?php
define('COOKIE_PREFIX'str_replace('.php'''basename(__FILE__)).'_');
define('DBKISS_SQL_DIR''dbkiss_mysql');

$cookie = array(
    'db_driver' => 'mysql',
    'db_server' => 'localhost',
    'db_name' => 'test',
    'db_user' => 'root',
    'db_pass' => 'toor',
    'db_charset' => 'utf8',
    'page_charset' => 'utf-8',
    'remember' => 1
);

foreach ($cookie as $k => $v) {
    if ('db_pass' == $k) { $v base64_encode($v); }
    $k COOKIE_PREFIX.$k;
    if (!isset($_COOKIE[$k])) {
        $_COOKIE[$k] = $v;
    }
}

require './dbkiss.php';
?>

Changelog

1.13 (2012-01-07)

1.12 (2011-07-30)

1.11 (2011-05-29)

1.10 (2011-03-09)

1.09 (2011-01-08)

1.08 (2010-11-04)

1.07 (2010-08-04)

1.06 (2010-07-18)

1.05 (2010-05-21)

1.04 (2010-02-20)

1.03 (2010-02-11)

1.02 (2009-10-24)

1.01 (2009-xx-xx)

1.00 (2009-02-10)

0.61 (2008-04-18)

Todo list