Answers for "how to get structure of table in codeigniter"

0

how to get structure of table in codeigniter

$fields = $this->db->list_fields('table_name');
foreach ($fields as $field)
{
   echo $field;
}
Posted by: Guest on July-23-2021

Code answers related to "how to get structure of table in codeigniter"

Browse Popular Code Answers by Language