I'm not sure if this is even the best way to do this, but I have the following XML document and using PHP I need to select the data that comes in stage one
<?xml version="1.0" encoding="utf-8"?>
<stages>
<stage name="one">
<watch>
<story>
<title>title</title>
<copy>text goes here</copy>
</story>
</watch>
</stage>
<stage name="two">
<watch>
<story>
<title>title 2</title>
<copy>text goes here</copy>
</story>
</watch>
</stage>
</stages>
This PHP returns NULL
$xml = simplexml_load_file("content/content.xml");
var_dump($xml->stage->name['one']);