Amy
Amy

Reputation: 69

Warning: simplexml_load_string() [function.simplexml-load-string]: <Corrections Technology> in line 9

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

Answers (1)

user3368817
user3368817

Reputation:

<Corrections Technology> is an invalid xml tag

You cannot have space in the tag name. See Spec

Upvotes: 1

Related Questions