Tworzenie XML przy użyciu CodeIgniter

Używam tego kodu w Codeigniter do generowania XML:

<code>public function get_cuisine()
{
    $this->load->dbutil();
    $sql = "select * from cuisine";
    $query = $this->db->query($sql);
    $config = array (
        'root'    => 'root',
        'element' => 'element',
        'newline' => "\n",
        'tab'     => "\t"
    );
    echo $this->dbutil->xml_from_result($query, $config);   
}   
</code>

Ale to pokazuje ogólny format wydruku. Jak mogę go wyświetlić jako stronę typu XML?

questionAnswers(3)

yourAnswerToTheQuestion