How PHP generates MySQL data dictionary

Source: Internet
Author: User
Tags php mysql
It is necessary to generate a data dictionary from MySQL database, which can be used to easily view database tables, fields and make a data dictionary. This article mainly for you in detail the PHP generated MySQL data dictionary of the relevant information, interested in small partners can refer to. We hope to help you.

The following code is simple to change the configuration can be used, the style is also very good.

<?php header (' Content-type:text/html;charset=utf-8 '); Define (' db_host ', ' localhost '); Define (' Db_user ', ' root '); Define (' Db_pass ', ' root '); Define (' db_name ', ' test '); Define (' Db_port ', 3306); Define (' Db_char ', ' UTF8 '); Define (' APPNAME ', '); $conn =mysql_connect (db_host. ': '). Db_port,db_user,db_pass); mysql_select_db (db_name); mysql_query (' Set names '). Db_char); $sql = "SHOW TABLE STATUS from". db_name; $result =mysql_query ($sql); $array =array (); while ($rows =mysql_fetch_assoc ($result)) {$array []= $rows;}//Table count $tab _count = count ($array); Echo ' <! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> 

Related recommendations:

PHP MySQL PDO query Operation example Introduction

PHP mysqli Extension preprocessing examples

PHP MySQL Connection topic: The most complete PHP connection MySQL Database tutorial summary

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.