From 3dd978f680076be842bfcb5c9e2cbf35b926373b Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 30 Sep 2006 19:24:45 +0000 Subject: --- user_guide/database/table_data.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'user_guide/database/table_data.html') diff --git a/user_guide/database/table_data.html b/user_guide/database/table_data.html index f3df176ed..299e6dc3e 100644 --- a/user_guide/database/table_data.html +++ b/user_guide/database/table_data.html @@ -62,15 +62,17 @@ Table Data
+ +

Table Data

These functions let you fetch table information.

-

$this->db->tables();

+

$this->db->list_tables();

Returns an array containing the names of all the tables in the database you are currently connected to. Example:

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

foreach ($tables as $table)
{
-- cgit v1.2.3-24-g4f1b