PHP code to get all table names in mysql database_PHP tutorial

WBOY
Release: 2016-07-21 15:30:21
Original
991 people have browsed it

Copy code The code is as follows:

$server = 'localhost';
$user = 'root';
$ pass = '';
$dbname = 'dayanmei_com';
$conn = mysql_connect($server,$user,$pass);
if(!$conn) die("Database system connection failed! ");
mysql_select_db($dbname) or die("Database connection failed!");
$result = mysql_query("SHOW TABLES");
while($row = mysql_fetch_array($result))
{
echo $row[0]."";
}
mysql_free_result($result);

Note the function of all table names in the list mysql in php mysql_list_tables has been deleted. It is recommended not to use this function to list mysql data tables.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323245.htmlTechArticleCopy the code as follows: $server = 'localhost'; $user = 'root'; $pass = '' ; $dbname = 'dayanmei_com'; $conn = mysql_connect($server,$user,$pass); if(!$conn) die("Database system connection...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!