Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Xuất dữ liệu từ mysql trong xml bằng php

Hãy thử mã này:

<?php
$dbh=mysql_connect($localhost, $username, $password) or die ('I cannot connect to the database because: ' . mysql_error());
$result = mysql_query("SELECT * FROM 12345_flv.flv WHERE enabled = '1' ORDER BY id DESC") or die('Could not connect: ' . mysql_error());  

$string = '<videos><updated>2010-07-20T00:00:00Z</updated><video>';

while ($row = mysql_fetch_array($result)) { 
    $id=$row['id'];
    $title=$row['title'];
    $string .='<id>'.$id.'</id>';
    $string .='<title>'.$title.'</title>';
}
$string .='</video></videos>'; 
$xml = new SimpleXMLElement($string);
Header('Content-type: text/xml');
echo $xml->asXML();
?>



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Hàm MySQL CEILING () - Làm tròn đến số nguyên gần nhất

  2. Các câu lệnh chuẩn bị sẵn trong PHP và ràng buộc giá trị mang lại lỗi số tham số không hợp lệ

  3. Giám sát hiệu suất MySQL với ClusterControl

  4. Hibernate + ON logic KEY DUPLICATE

  5. Làm cách nào để phát hiện giao dịch đó đã được bắt đầu?