PHP Classes

File: test_inc_ebay_de.php

Recommend this page to a friend!
  Classes of Peter Klauer   ebay_de   test_inc_ebay_de.php   Download  
File: test_inc_ebay_de.php
Role: Example script
Content type: text/plain
Description: Implementation demo
Class: ebay_de
Get details from German eBay auction pages
Author: By
Last change: Zeigt jetzt Artikelbild und die Beschreibung an.
Date: 15 years ago
Size: 1,111 bytes
 

Contents

Class file image Download
<?PHP
 
include 'inc_ebay_de.php';
 
header('Content-Type: text/html; charset=utf-8');
 
 
$artikelnr = isset( $_GET['artikelnr'] ) ? $_GET['artikelnr'] : 120350609295;
 
 
$ebay = new ebay_de( $artikelnr );
 
?>

<form method="GET" action="<?php echo $PHP_SELF;?>">
<input type="text" size="12" value="<?php echo $ebay->artikelnr;?>" name="artikelnr">
<input type="submit" value="ok"></form>

<?php

  $ebay
->showdata('', '', '_blank');
 
  echo
'<br><br><hr><br><h2>Anzeige der Objektdaten mit Beschreibung:</h2>';
  echo
$ebay->artikel.'<br>';

  echo
'<img src="'.$ebay->image.'" alt="" style="float:left;margin:0 1em 1em 0">';
  echo
'startpreis: '.$ebay->startpreis.'<br>';
  echo
'sofortkauf: '.$ebay->sofortkauf.'<br>';
  echo
'gebot: '.$ebay->gebot.'<br>';
  echo
'auktionsende: '.$ebay->auktionsende.'<br>';
  echo
'aktiv: '.($ebay->aktiv ? 'Aktiv' : 'Geschlossen').'<br>';
  echo
'Anzahl Gebote: '.$ebay->anzahlgebote.'<br>';
 
  echo
'link: '.$ebay->geturl('zur Auktion','_blank').'<br>';
 
  echo
'Beschreibung:<br>'.$ebay->beschreibung;
 
 

 
?>