The swf posts the content to save.php but i dont have a save.php I need to create one but i donno what do put in the save.php as code to get it posted there. Here is the code that requires the save.php to post:

Code:
loc3 = new flash.net.URLRequestHeader("Content-type", "application/x-www-form-urlencoded");
                (loc4 = new flash.net.URLRequest(p.rooturl + "/save.php?name=" + arg2 + "&type=" + arg1)).requestHeaders.push(loc3);
                loc4.method = flash.net.URLRequestMethod.POST;
                loc4.data = arg3;
                flash.net.navigateToURL(loc4, "_self");
                Close();

How can i make a save.php for this code so it will post it there?