XML creation using CodeIgniter

gullit1972

New Member
I'm using this code in Codeigniter to generate 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\]But this shows the general print format. How can I get it to show as an XML type page?
 
Back
Top