Thread: PHP and XML
View Single Post
  #10 (permalink)  
Old 04-05-06, 01:20 AM
thomasantony thomasantony is offline
New Member
 
Join Date: Apr 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Cool

Hi,
Try doing this.
PHP Code:

<?php

header
('Content-type: application/xml');
echo 
file_get_contents('menuData.xml');
?>
or this:

PHP Code:

<?php

header
('Content-type: text/xml');
echo 
file_get_contents('menuData.xml');
?>
Hey, that was my first post here. Hope it was helpful

Thomas
Reply With Quote