Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to delete all elements of xml file including root element also?

code is given below:

data.html:

<form><input type='button' name='button1'  
   value='Purchase' onClick='purchase( )'/> 

data.js:

function purchase( )
{


if (request.overrideMimeType) 
    {
    request.overrideMimeType("text/xml");
    }
if(request) 
    {
    request.open("GET", "purchase.php", true);
    request.onreadystatechange = function()
        {
        if ((request.readyState == 4) && (request.status == 200))
             {

 document.getElementById("show").innerHTML=request.responseText; 
        }
    }
    request.send(null);
    }

}

item.xml:

<?xml version="1.0" encoding="utf-8"?>
<items>
  <item>
    <id>1</id>
     <ItemDetail>working</ItemDetail>
     </item>
    <item>
    <id>2</id>
     <ItemDetail>working</ItemDetail>
     </item>
</items>
share|improve this question
3  
Delete the file? Seriously, this question doesn't make a lot of sense. Give details and an example. – delnan Apr 24 '11 at 13:30
1  
file_put_contents($filename, ''); – Tim Cooper Apr 24 '11 at 13:32
If you want to delete everything, why not make a new XML doc? (If you delete the root element, you delete all namespace references anyway.) – Rudie Apr 24 '11 at 13:32
i dont want to delete file , just need filesize 0 by removing all elements including root element too – ayman Apr 24 '11 at 14:02
What does that JavaScript code have to do with, well, anything? – Pointy Apr 24 '11 at 14:22

closed as not a real question by Tim Cooper, Mike Samuel, Pekka 웃, NikiC, Richard Apr 26 '11 at 13:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.