Skip to content

Instantly share code, notes, and snippets.

@jamesmills
Created December 18, 2012 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmills/4327836 to your computer and use it in GitHub Desktop.
Save jamesmills/4327836 to your computer and use it in GitHub Desktop.
Tour Offer Title
$content = new SimpleXMLElement(file_get_contents('http://www.traveleditions.co.uk/service.asmx/ReturnTours'));
foreach ($content->Tours->Tour as $tour) {
if ($tour->Country['Name'] == 'United Kingdom') {
echo '<p>' . htmlentities($tour->OfferTitle, ENT_QUOTES | ENT_IGNORE, "UTF-8") . '</p>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment