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 Quote Link to comment 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>'; ?> Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.