topical media & game development

talk show tell print

mashup-flickr-13-Complete-gallery-geoview.php / php



  <?php
  
  include (dirname(__FILE__) . '/../lib/gallery.php');
  
  gallery = new FlickrGallery();    
  
  id = _REQUEST['id'];
  
  header ("Content-Type: text/html");
  
  if (!empty(id))
  {
    info = gallery->getPhotoInfo(id);
    title = info['title'];
    username = info['owner']['username'];
    realname = info['owner']['realname'];
    nameText = username;
    if (!empty(realname))
    {
      nameText = realname . " (" . username . ")";
    }
    img = 'http://static.flickr.com/' . info['server'] . '/' . info['id'] . '_' 
      . info['secret'] . '_t.jpg';
    photoPage = 'http://www.flickr.com/photos/' . info['owner']['nsid'] . '/' 
      . id . '/';
  
  ?>
  <div class="map-info">
    <p class="map-image"><a href="<?php echo photoPage ?>" 
       target="flickr-photo"><img src="<?php echo img ?>" /></a></p>
    <p class="map-title"><?php echo title ?></p>
    <p class="map-user"><?php echo nameText ?></p>
    <p class="map-link"><a href="<?php echo photoPage ?>" 
       target="flickr-photo">View on Flickr</a></p>
  </div>
  <?php
  }
  ?>
  


(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.