How would i retrieve what is inside these XML tags in php?
I can get it to work when they don't have a ':' inside the tags. But for this, it doesn't seem to work:
$description = $item->getElementsByTagName('desc');
$description = $description->item(0)->firstChild->nodeValue;
<sql:time>21:00</sql:time>
<sql:event> Empty </sql:event>
<sql:desc>This field is empty</sql:desc>
thanks