b@1478: Input file empty'; giuliomoro@1855: echo $xml; giuliomoro@1855: return; giuliomoro@1855: } nickjillings@1510: if ($fileHandle == FALSE) nickjillings@1510: { nickjillings@1510: // Filehandle failed nickjillings@1510: $xml = 'Could not open file'; nickjillings@1510: echo $xml; nickjillings@1510: return; nickjillings@1510: } nickjillings@1510: $wbytes = fwrite($fileHandle, $postText); nickjillings@1510: if ($wbytes == FALSE) nickjillings@1510: { nickjillings@1510: // FileWrite failed nickjillings@1510: $xml = 'Could not write file "saves/'.$xmlfile.'"'; nickjillings@1510: echo $xml; nickjillings@1510: return; nickjillings@1510: } b@1478: fclose($fileHandle); nickjillings@1510: nickjillings@1510: // Return JSON confirmation data nickjillings@1510: $xml = 'OK"saves/'.$xmlfile.'"'; nickjillings@1510: echo $xml; giuliomoro@1855: ?>