Convert MySQL to XML via PHP

前端 未结 3 1841
广开言路
广开言路 2021-01-28 05:04

I have a MySQL database on my server and I\'d like a certain table to be returned via PHP as XML. I\'ve seen various ways to get XML to MySQL, but not an easy to follow way of t

3条回答
  •  旧时难觅i
    2021-01-28 05:11

    Just pull the data out and manually form it into an XML document (using the DOM or XMLWriter classes), there's no built in way to just do it. If you're looking for a pre-built solution though, PHPMyAdmin has functionality to dump a table to an XML document.

提交回复
热议问题