Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?PHP
2
/**
3
 * example that adds information to the item description
4
 *
5
 * $Id: example_EndItem.php,v 1.2 2004/11/07 12:48:52 schst Exp $
6
 *
7
 * @package     Services_Ebay
8
 * @subpackage  Examples
9
 * @author      Stephan Schmidt
10
 */
11
error_reporting(E_ALL);
12
require_once '../Ebay.php';
13
require_once 'config.php';
14
 
15
$session = Services_Ebay::getSession($devId, $appId, $certId);
16
$session->setToken($token);
17
$ebay = new Services_Ebay($session);
18
 
19
$item   = $ebay->GetItem(4501336808);
20
$result = $item->End(1);
21
 
22
echo '<pre>';
23
print_r($result);
24
echo '</pre>';
25
?>