Reputation: 69
I am facing some problem with the code please help me.. I would be very grateful to you..
$category = '
<?xml version='1.0' ?>
<document>
<Astronomy>
<items>milky way, comet</items>
</Astronomy>
<Business>
<items>abilities, accelerated benefits</items>
</Business>
<Corrections Technology>
<items>accomplice, addiction, agent</items>
</Corrections Technology>
</document>';
$category = simplexml_load_string($category);
Upvotes: 0
Views: 61
Reputation:
<Corrections Technology>
is an invalid xml tag
You cannot have space in the tag name. See Spec
Upvotes: 1