PHP Export data structure and generate. sql file _php Tutorial

Source: Internet
Author: User
Tags mysql tutorial
PHP tutorials Export data structures and generate. sql files

$database = ";//Database tutorial name
$options =array (
' Hostname ' = ', '//IP address
' CharSet ' = ' utf8 ',//coded
' filename ' = ' $database. ' SQL ',//file name
' Username ' = ',
' Password ' and ' = '
);
MySQL tutorial _connect ($options [' hostname '], $options [' username '], $options [' Password ']) or Die ("Cannot connect to database!");
mysql_select_db ($database) or Die ("database name is wrong!");
mysql_query ("SET NAMES ' {$options [' CharSet ']} '");
$data = Get_insert_sql ($table);


function dump_table ($table, $fp = null)
{
$need _close = false;
if (Is_null ($fp)) {
$fp = fopen ($table. '. sql ', ' W ');
$need _close = true;
}
$a =mysql_query ("show create TABLE ' {$table} '");
$row =MYSQL_FETCH_ASSOC ($a); Fwrite ($fp, $row [' Create Table ']. '; '); /export Table structure
$rs = mysql_query ("select * from ' {$table} ');
while ($row = Mysql_fetch_row ($rs)) {
Fwrite ($fp, Get_insert_sql ($table, $row));
}
Mysql_free_result ($RS);
if ($need _close) {
Fclose ($FP);
}
}

http://www.bkjia.com/PHPjc/630881.html www.bkjia.com true http://www.bkjia.com/PHPjc/630881.html techarticle PHP Tutorials Export data structures to generate. sql file $database = ';//Database tutorial name $options =array (' hostname ' = ',//ip address ' charset ' = ' utf8 ',//encoded ' filename ') ' = $database. ' S ...

  • 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.