Product Page '. populateContent() .''; require '../layout.php'; function populateContent() { $server = 'mysql'; $username = 'student'; $password = 'student'; $schema = 'ibuy'; $pdo = new PDO('mysql:dbname=' . $schema . ';host=' . $server, $username, $password); $stmt = $pdo->prepare('SELECT * FROM listings WHERE listing_id= :listing_id'); $values = [ 'listing_id' => $_GET['listing_id'] ]; $stmt->execute($values); $listing = $stmt->fetch(); $output = ' '. $listing['listing_name'] .' '. $listing['listing_category'] .' Auction created by User.Name Current bid: £123.45 Time left:'. (strtotime($listing['listing_deadline']) - strtotime(date('Y-m-d H:i:s')))/60 .' '. $listing['listing_description'] .' Reviews of User.Name Ali said great ibuyer! Product as advertised and delivery was quick 29/09/2019 Dave said disappointing, product was slightly damaged and arrived slowly.22/07/2019 Susan said great value but the delivery was slow 22/07/2019 Add your review '; return $output; } ?>
Auction created by User.Name
Current bid: £123.45
'. $listing['listing_description'] .'