I'm trying to output an xml document but I seem to be getting a space 
character just before <?xml...... which is causing the application 
receiving the data (not mine) to cough and splutter and die.

In my controller I am setting $this->layout=false; and my view is:
<?php
header("Content-type:text/xml");
print ("<?xml version=\"1.0\"?>");
print("<somedata>");
foreach ($rows as $row) print("<arow>".$row['table']['field']."</arow>");
print("</somedata>");
?>

DEBUG is 0 I also tried removing all beforeFilter and beforeRender 
settings in app_controller and the controller that calls this with no luck.

Any ideas why I am getting a space, is there a different/better way to 
output XML.

-- 
*/Jeremy Pointer/*
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to