If you want all auctions for one user, try :
SELECT auction.auctionid, book.title, bid.bidusername, bid.bidprice
FROM auction INNER JOIN book ON (auction.isbn = book.isbn)
LEFT JOIN bid ON (auction.auctionid=bid.auctionid)
WHERE sellerusername = '$username'
GROUP BY auction.auctionid
But it...