Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
UPDATE `probid_users` SET `is_seller` =1 where `is_seller` =0;
ALTER TABLE `probid_users` CHANGE `is_seller` `is_seller` TINYINT( 4 ) NOT NULL DEFAULT '1';
// now notify all other bidders of the bid retraction
$mail_input_id = $auction_id;
include('language/' . $this->setts['site_lang'] . '/mails/bid_retraction_bidders_notification.php');
include('language/' . $this->setts['site_lang'] . '/mails/bid_retraction_seller_notification.php');
$nb_bids = $this->count_rows('bids', "WHERE auction_id='" . $auction_id . "' AND bidder_id='" . $bidder_id . "'");