I don't have very much PHP experience so I don't know if this is usual or anything, but I'm having a problem with the "->" sign. I was looking up how to get the value of a XML node and came across something like this
$file = simplexml_load_file($url);
$output['value'] = $file->node[0];
I don't know if this code will work correctly, but the problem I'm having is that everything after the "->" is just printed out on the page and not processed as php code. Including the ?> php ending tag. I don't know what I can do to fix this. Maybe someone can help me to explain this problem.