<?php
/**
* testpwa.php
*
* @version $Id$
* @copyright 2009
*/
include "picasaweb.class.php";
$oPwa = new picasaweb();
$oPwa->login('xy@3sweb.net', 'x28herrn');
$oPwa->getAlbums();
?>
<html>
<head>
<title>Test Picasaweb</title>
<style type="text/css">
#albumList td {
font-family: Arial;
paddig-right: 2px;
}
#albumList td+td+td {
text-align: right;
}
#albumTn td {
font-family: Arial;
text-align: center;
}
</style>
</head>
<body>
<h2>My Albums</h2>
<?=$oPwa->dispAlbums()?>
<br>
<?=$oPwa->dispAlbumsTn()?>
</body>
</html>
|