I have database table options, where am using it as a dedicated table to store information. I have never heard of this type of table query and have never tried it. I saw on WordPress database so thought to try my own.
Here's database table

This is what am trying now
$sql = "SELECT * FROM options WHERE option_flag = 'settings'";
var_dump( $db->FETCH_FIELD($sql) );
This is inside my database class file $db
public function FETCH_FIELD($sql){
$this->results = mysqli_query($this->link, $sql);
$rows = mysqli_fetch_fields( $this->results );
return $rows;
}
The Problem
When I var_dump the results, I don't see any database information.
