Fetch one row as a numeric array.
dbarraynum( mixed $result ) : array
$result (string) (Required) The query resource that is being evaluated. This result comes from a call to dbquery().
(array) Returns a numerical array of strings that corresponds to the fetched row.
$result = dbquery("SELECT * FROM ".DB_TABLE);
if (dbrows($result) > 0) {
while ($data = dbarraynum($result)) {
//
}
}