tarun Posted June 24, 2007 Share Posted June 24, 2007 Well How Can You Create XML Files Using PHP4 If You Can Plz Create This Example: <MEMBERS> <MEMBER ID="45643" NAME="Maya" /> <MEMBER ID="53535" NAME="John" /> </MEMBERS> Thnx, Tarun Link to comment https://forums.phpfreaks.com/topic/56959-create-xml-file-using-php4/ Share on other sites More sharing options...
trq Posted June 24, 2007 Share Posted June 24, 2007 <?php echo '<MEMBERS>'; echo ' <MEMBER ID="45643" NAME="Maya" />'; echo ' <MEMBER ID="53535" NAME="John" />'; echo '</MEMBERS>'; ?> Link to comment https://forums.phpfreaks.com/topic/56959-create-xml-file-using-php4/#findComment-281345 Share on other sites More sharing options...
tarun Posted June 24, 2007 Author Share Posted June 24, 2007 Sorry I Should Have Made It Clearer I Meant To Create File Then Like Add Things To It Like Add Another Member And Delete Another Member Link to comment https://forums.phpfreaks.com/topic/56959-create-xml-file-using-php4/#findComment-281350 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.