<?php
/**
* dispalbum..php
*
* @version $Id$
* @copyright 2009
*/
include "picasaweb.class.php";
$oPwa = new picasaweb();
$oPwa->login('xy@3sweb.net', 'x28herrn');
$oPwa->getPhotos($_GET['id']);
?>
<html>
<head>
<title>Test Picasaweb</title>
<style type="text/css">
#photosTn td {
font-family: Arial;
text-align: center;
}
#photosTn h3 {
font-size: 14px;
margin-bottom: 3px;
}
</style>
</head>
<body>
<h2>My Photos</h2>
<?=$oPwa->listThumbs()?>
</body>
</html>
|