I have a very simple XML file
<?xml version="1.0" encoding="utf-8"?>
<news>
<header>Test!!!!!!!!!!!!!!!!!!!!!!!</header>
<body />
</news>
I just need a PHP script which can assign $header = the hader node and $body to the body node...
how can I do this?