PHP Classes

File: templates/_individual.php

Recommend this page to a friend!
  Classes of Matías Gentiletti   Picasa Photo Gallery   templates/_individual.php   Download  
File: templates/_individual.php
Role: Application script
Content type: text/plain
Description: Template to show each album
Class: Picasa Photo Gallery
Extract data picture galleries from Picasa site
Author: By
Last change:
Date: 15 years ago
Size: 661 bytes
 

Contents

Class file image Download

<div id="gallery">
  <div id="block_embed">
    <div>
      <embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="800" height="533" flashvars="host=picasaweb.google.com&RGB=0x000000&feed=<?php echo $url_api ?>" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
    </div>
  </div>
  <hr>
  <div id="photos_list">
    <?php foreach ($photos as $item): ?>
<div class="block_photo">
      <div><a href="<?php echo $item['link'] ?>" target="_blank"><img class="photo" src="<?php echo $item['small_photo'] ?>" height="120px;" /></a></div>
    </div>
    <?php endforeach; ?>
</div>
</div>