Skip to content

Instantly share code, notes, and snippets.

@saasindustries
Created January 18, 2021 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saasindustries/d4d3a00e6f28ebf3c92d78e2fc101aa1 to your computer and use it in GitHub Desktop.
Save saasindustries/d4d3a00e6f28ebf3c92d78e2fc101aa1 to your computer and use it in GitHub Desktop.
$xmlFile = ‘MovieReview.xml’;
$handle = fopen($xmlFile, ‘w’) or die('Unable to open the file: '.$xmlFile);
if(fwrite($handle, $xml_content)) {
echo 'Successfully written to an XML file.';
}
else{
echo 'Error in file generating';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment