Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to display the database table names list in codeigniter

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

foreach ($tables as $table)
{
   echo $table;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #database #table #names #list #codeigniter
ADD COMMENT
Topic
Name
9+2 =