Error in creating new xml file...

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jmangesh
Forum Newbie
Posts: 4
Joined: Wed Feb 16, 2005 12:57 am
Location: pune
Contact:

Error in creating new xml file...

Post by jmangesh »

i am trying to create new xml file but i got foolowing error..

Fatal error: Call to undefined function new_xmldoc() in c:\Inetpub\wwwroot\phpxml\filehandling\createnewxmlfile.php on line 2


The Code..is

<?
$doc = new_xmldoc('1.0');
$root = $doc->add_root('members');
.......
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

according to the php manual that is an unknown function too.....

which module are you trying to use?
Post Reply