第158行第1行的错误:AttValue:“或'预期

Please help me find out where I mistake. I'm trying to create xml from php file to make a playlist for JWPlayer 6, however I can't figure out this error from XML:

error on line 1 at column 158: AttValue: " or ' expected

// xml
header("Content-Type: text/xml; charset=utf-8");
$xml    =   "<rss version='2.0' xmlns:jwplayer='http://rss.jwpcdn.com/'><channel><item>";
$xml    .=  "<title>".$play[0][0]."</title><description></description><jwplayer:image></jwplayer:image><jwplayer:source file=".$provider.$code."/></item>";
$xml    .=  "</channel></rss>";
echo $xml;
exit();

The part where you create jwplayer:resource element is not correct :

<jwplayer:source file=".$provider.$code."/>

You missed the quotes around file attribute value :

<jwplayer:source file='".$provider.$code."'/>