Good day. Either I do not understand something, or I have forgotten how. There is such a code:
$db = new SQLite3('../database/database.db'); $result = $db->query("SELECT * FROM users"); $users = $result->fetchArray(SQLITE3_ASSOC); var_dump($users); According to the idea, he should remove all the records from the table, but only output one.

