Hi,
I am pulling content from a xml file with simpleXML
I was wondering if it is possible to display a certain node depending on the contents of the node.
eg.
<article>
<title>PHP</title>
<content>yada yada yada</content>
</article>
<article>
<title>JAVASCRIPT</title>
<content>yodo yodo yodo</content>
</article>
can simpleXML find a specific title and then display the article for that title?
Display article whose title = PHP
I really hope this is possible.
Thanks to anyone who replies