Jump to content

Strange Result from SIMPLEXML_LOAD_File


RibTime

Recommended Posts

Have been watching the forums for a while and they have helped me out quite a lot. But I can't see an answer to this.

I have an XML file that I want to process into an mySQL database and think that using SIMPLEXML will be the way forward. To get things going I've picked up an example from a web site but it's not working as I expect, here's the code and XML

[code]<?php
include 'example.xml';

$xml = new SimpleXMLElement($xmlstr);

echo $xml->movie[0]->plot; // "So this language. It's like..."
?> [/code]

[code]<?xml version="1.0"?>
<movies>
<movie>
  <title>PHP: Behind the Parser</title>
  <characters>
  <character>
    <name>Ms. Coder</name>
    <actor>Onlivia Actora</actor>
  </character>
  <character>
    <name>Mr. Coder</name>
    <actor>El Act&#211;r</actor>
  </character>
  </characters>
  <plot>
  So, this language. It's like, a programming language. Or is it a
  scripting language? All is revealed in this thrilling horror spoof
  of a documentary.
  </plot>
  <rating type="thumbs">7</rating>
  <rating type="stars">5</rating>
</movie>
</movies>[/code]

Instead of putting out "So, this language. It's like....." it displays

[quote]Ms. Coder Onlivia Actora Mr. Coder El ActÓr So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. 7 [/quote]

I have PHP 5.1.6.

Can anyone suggest why it's putting out more than just the plot tag?

Thanks in advance

Mark
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.