Simple one guys.
I have an XML parsed using simplexml_load_file().
The following code:
<?php
foreach($xml->actors->actor as $actors) {
echo $actors.", ";
}
?>
Gives the following result:
John Smith, Amy Adams, Charlie Doe,
How do I modify the code such that it gives:
John Smith, Amy Adams, Charlie Doe
This needs to apply across any number of entries in the array. Thanks!