topical media & game development

talk show tell print

mashup-flickr-05-Step-1-badge-badge.php / php



  <?php
  
  include("http://api.flickr.com/services/feeds/photos_public.gne?id=50317659@N00&format=php");
  
  s = "";
  
  s .= '<div class="badge">';
  s .= '<p class="badge-title"><a href="' . feed['url'] . '">' . feed['title'] . '</a></p>';
  s .= '<ul class="badge-items">';
  
  items = feed['items'];
  
  for (i = 0; i < count(items); i++)
  {
    if (preg_match('/(\/static.flickr.com\/\d+\/\d+_[0-9a-z]+)_m\.jpg/',
      items[i]['description'], result))
    {
      image = result[1] . '_s.jpg'; 
      s .= '<li class="badge-item"><a href="' . items[i]['url'] . '"><img src="' . image . '" /></a></li>';
    }
  }
  
  s .= '</ul></div>';
  
  echo(s);
  
  ?>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.