Simple PHP library for reading and writing EndNote XML files.
require('endnote.php');
$endnote = new PHPEndNote();
$endnote->SetXMLFile('an-endnote-file.xml');
print_r($endnote->refs); // Outputs all processed refs in an associative array
require('endnote.php');
$endnote = new PHPEndNote();
$endnote->SetXMLFile('an-endnote-file.xml'); // Read in content (or populate $endnote->refs yourself)
$endnote->OutputXML('EndNote File.xml'); // Output file to the browser