1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-15 19:13:59 +02:00

Dump column names in CSV select export

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1010 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-08-25 14:11:15 +00:00
parent d0681c1d50
commit e4f5d17eec
3 changed files with 5 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
<?php
function dump_table($table) {
echo "\xef\xbb\xbf"; // UTF-8 byte order mark
dump_csv(array_keys(fields($table)));
}
function dump_data($table, $style, $select = "") {