Answers for "how to display the database table names list in codeigniter"

0

how to display the database table names list in codeigniter

$tables = $this->db->list_tables();

foreach ($tables as $table)
{
   echo $table;
}
Posted by: Guest on July-23-2021

Code answers related to "how to display the database table names list in codeigniter"

Browse Popular Code Answers by Language