Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$pdo = new Pdo('mysql:dbname=badbidder1;host=localhost', $username, $password);
//get the import number that is left and id
$stmt = $pdo->query("SELECT id,importsNumber FROM `bad_users` where username ='carquest'");
while ($row = $stmt->fetch())
{
$youruserid = $row['id'];
$import_num = $row['importsNumber'];
}