// Create a new DOMDocument
$doc = new DOMDocument('1.0', 'UTF-8');
// Create the root element
$root = $doc->createElement('root');
$doc->appendChild($root);
// Create a user element
$user = $doc->createElement('user', 'john_doe');
$root->appendChild($user);
// Create an email element
$email = $doc->createElement('email', '[email protected]');
$root->appendChild($email);
// Save the XML to a file
$doc->save('users.xml');
echo "XML file created successfully.";