up vote 0 down vote favorite
share [g+] share [fb]

I am trying to create an RSS feed in PHP using DomDocument but every time I try to make a node like http://domain.com the script fails

$oDomDocument = new DOMDocument( "1.0", "iso-8859-1" );

// Create the root now
$oRootNode = $oDomDocument->createElement( "rss" );
$oRootNode->setAttribute( "version", "2.0" );
$oDomDocument->appendChild( $oRootNode );

// Create the channel node
$oChannelNode = $oDomDocument->createElement( "channel" );
$oRootNode->appendChild( $oChannelNode );

// Add site details
$oChannelNode->appendChild( $oDomDocument->createElement( "title", "Site Title" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "link", "http://google.com" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "description", "This is a description" ) );
$oChannelNode->appendChild( $oDomDocument->createElement( "language", "en-us" ) );

I get the following error..

XML Parsing Error: mismatched tag. Expected: . Location: http://daddydonkey/feed.rss Line Number 4, Column 58:This is a description ---------------------------------------------------------^

link|improve this question

feedback

2 Answers

I tried your PHP code and it works.

link|improve this answer
feedback

Your code sample, as written, runs and produces valid XML without an error like the one you provided. Perhaps your sample got truncated when you pasted it?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.