Hey, I'm itterating through a DOMDocument. the 'current' DOMNode is given by 'node'
What can I ask of node, to work out if I've got an <open> tag, or a <\open>
tag.
I want to act differently on opening and closing tags.
something like if (node->isOpentag()) { //;} else {//;}
also if I had <single/> would it recognise both open and close one after the
other?
Help much appreciated
