printInfo(); $dbPath = '/home/u525748/php84test.ff14wiki.ru/www/tmp/test.dbf'; $def = array( array("date", "D"), array("name", "C", 50), array("age", "N", 3, 0), array("email", "C", 128), array("ismember", "L") ); if (!file_exists($dbPath)){ if (!dbase_create($dbPath, $def)) { echo "

Error! Unable to create database

"; } } $db = dbase_open($dbPath, 0) or die("Error! Unable to open database file '$dbPath'."); $column_info = dbase_get_header_info($dbh); echo ($column_info); dbase_close($db);