From 3bc2b21c89d599f605573061afed9ebd3203d069 Mon Sep 17 00:00:00 2001 From: 3x0k1d <3x0k1d@gmail.com> Date: Mon, 5 May 2025 08:03:13 +0300 Subject: [PATCH] fix dbase --- checkers/php-dbase.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/checkers/php-dbase.php b/checkers/php-dbase.php index 4cd5232..0c6ce1b 100644 --- a/checkers/php-dbase.php +++ b/checkers/php-dbase.php @@ -26,6 +26,7 @@ if (!file_exists($dbPath)){ $db = dbase_open($dbPath, 0) or die("Error! Unable to open database file '$dbPath'."); -$column_info = dbase_get_header_info($dbh); +$column_info = dbase_get_header_info($db); + var_export($column_info); dbase_close($db);