Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Show tables php syntax

Featured Replies

I am using php to show the tables in my database as part of a project. I will probably have more than one question, but for now i would like help on why my php to show the results of "show tables" isn't working. It says

 

 

Resource id #3Resource id #3Resource id #3Resource id #3

 

 

on the page.

 

Please and thank you.

 

Here's the php

<?php


/*
//Shows tables in plastronics.
$query = "show tables";

//Execute it, or return the error message if there's a problem.
$result = mysql_query($query) or die(mysql_error());
*/

$sql = "show tables";


$result = mysql_query($sql);
while($tables = mysql_fetch_assoc($result))

echo $result;



?>

Edited by wolf125

I always thought the syntax was

 

"SHOW TABLES FROM `database_name`;"

 

Anyway, you just keep echoing the resource, you need to do something like...

 

$result = mysql_query($sql);
while($table =  mysql_fetch_row($result)) {
   echo $table[0];
}

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.