How to get all tables names that are in a certain table.
Source code viewer
// Get all mssql tables and put them in variable tables. if ($link) { $result = mssql_query('select table_name from information_schema.tables order by table_name', $link); $tables[] = $row[0]; } else { echo 'Database connection failed while getting list of all tables in mssql.'; } // Print MSSQL table list.Programming Language: PHP