What are some potential ways to integrate the "Sofort kaufen" button from eBay into a listing using PHP?

To integrate the "Sofort kaufen" button from eBay into a listing using PHP, you can generate the button code dynamically based on the listing details and include it in the listing page. You can use eBay's API to retrieve the necessary information for the button and then generate the button code with the appropriate parameters.

<?php
// Retrieve necessary information for the "Sofort kaufen" button from eBay API
$listingId = '123456789'; // Replace with actual listing ID
$price = 99.99; // Replace with actual listing price

// Generate the "Sofort kaufen" button code
$buttonCode = '<form action="https://www.ebay.com/buyitnow" method="post">
                <input type="hidden" name="item_id" value="' . $listingId . '">
                <input type="hidden" name="amount" value="' . $price . '">
                <input type="submit" value="Sofort kaufen">
              </form>';

// Output the button on the listing page
echo $buttonCode;
?>