php スクリプトで mysql クエリから適切に xml ドキュメントを作成していると思いましたが、mysql クエリが機能しているにもかかわらず、xml ドキュメントを取得していません (私を助ける PHP エラーはありません)。
<?php
...
$result = $mysqli->query($sql);
if ($result) { //this query works, but no xml document produced as a result
$d = new DOMDocument();
$books = $d->createElement('hey');
$hey->setAttribute('check','The Adventures of Tom Sawyer');
$d->appendChild($books);
$d->appendChild($hey);
$d->appendChild($books);
echo $d->saveXML();
}
?>