Login   Register  
PHP Classes
elePHPant
Icontem

File: disphoto.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Thomas Jakober  >  PicasaWeb class  >  disphoto.php  >  Download  
File: disphoto.php
Role: Example script
Content type: text/plain
Description: Displays a single photo in full size
Class: PicasaWeb class
Display galleries of photos from PicasaWeb albums
Author: By
Last change: Added username and password for example Picasaweb album
Date: 2009-07-11 14:14
Size: 454 bytes
 

Contents

Class file image Download
<?php

/**
 * dispphoto.php
 *
 * @version $Id$
 * @copyright 2009
 */

$uri="pwaphoto.php?username=xy@3sweb.net&password=x28herrn&albumid=$_GET[albumid]&photoid=$_GET[photoid]";


?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Display Photo from Album</title>
</head>
<body>

<h1>My Photo</h1>

<p><img src="<?=$uri?>" alt="Photo"></p>

</body>
</html>