Which of the following returns an array with the names of all the tables in the database to which you are presently connected?

43. Which of the following returns an array with the names of all the tables in the database to which you are presently connected?

  1. $this->db->tables();
  2. $this->db->list_tables();
  3. $this->db->array_tables();

Answer: B) $this->db->list_tables();

Explanation:

$this->db->list_tables(); returns an array with the names of all the tables in the database to which you are presently connected.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.