//php將資料庫中的內容轉換成xml格式的
<?php
$db_host="localhost";//資料庫位置
$db_user="root"; //使用者名稱
$db_password="123456"; //密碼
$db_name="test"; //資料庫名稱
$link=mysql_connect($db_host,$db_user,$db_password) or die("資料庫連線失敗");
mysql_query("set names 'utf8'",$link); //編碼utf8
$db=mysql_select_db($db_name,$link);
$table="versionup";//表名
$fic = fopen("version.xml", "w");//輸出名稱,目錄需要有寫的許可權
fwrite($fic, '<?xml version="1.0" encoding="utf-8"?>');
$xml="<$table>";
$elements =array();
$result = mysql_query("describe $table");
while ($row = mysql_fetch_array($result))
$elements = $row[0];
$result = mysql_query("select * from $table");
$i = 0;
while ($row = mysql_fetch_array($result))
$xml=$xml."";}
$xml=$xml."";
mysql_close();
//$xml= iconv("gbk","utf-8",$xml);//編碼轉換
fwrite($fic, $xml);
echo("
");echo($xml);
fclose($fic);
PHP將資料集轉換成樹狀結構
把返回的資料集轉換成tree param array list 要轉換的資料集 param string pid parent標記字段 param string level level標記字段 return array function list to tree list,pk id pid pid...
將Excel中的資料轉換成sql Insert語句
excel 中有a b c三列資料,希望匯入到資料庫users表中,對應的字段分別是name,age 在你的excel 中增加一列,利用excel的公式自動生成sql語句,方法如下 1 在你的excel 中增加一列 2 在第一行的d列,就是d1中輸入公式 concatenate insert int...
將Excel中的資料轉換成sql Insert語句
1.或者用sql server 2000 還有 匯入的方法就是mdb檔案,access 2003 中的方法但是有個列的問題。excel 中有a b c三列資料,希望匯入到資料庫users表中,對應的字段分別是name,age 在你的excel 中增加一列,利用excel的公式自動生成sql語句,方法...