<?php

set_time_limit(0);
$start_time = time("now");
require_once 'lib/config.php';
require_once 'lib/item.php';
require_once 'lib/scrape.php';
require_once 'blocks/head.php';
require_once 'blocks/menu.php';
if (isset($_POST['revise'])) {
    $item = new Item($_POST['id']);
    $item->revise($_POST);
}
if (isset($_GET['id'])) {
    $item = new Item($_GET['id']);
    $item->load_ebay_data();
    $item->scrape();
}
?>
    <body>
    

<!--     <div id="ShowResults" style="margin:auto; width:98%;">
        <div style="height:50px;">
            <a href="add_asin.php" style="color:#FFFFFF; font-weight:bold;"><button class="btn btn-info disabled" type="button">Add Asin</button></a>  
            <a href="grab_amazon.php" style="color:#FFFFFF; font-weight:bold;"><button class="btn btn-success" data-loading-text="Loading..." type="button">Fetch Asin Details</button></a>
            <a href="ebay_edit.php" style="color:#FFFFFF; font-weight:bold;"><button class="btn btn-inverse" type="button">Edit Ebay Settings</button></a>
            <a href="send_to_ebay.php" style="color:#FFFFFF; font-weight:bold;"><button class="btn btn-danger" type="button">Add to Ebay</button></a>
            <a href="view_ebay_data.php" style="color:#FFFFFF; font-weight:bold;"><button class="btn btn-warning" type="button">View Ebay Listings</button></a>

        </div>