Depending on how you are storing bids etc this shouldnt be too hard a task.
If you are not storing them you will need to create a table something like this
id|auctionid|name|amount
From that to count the amount in each auction
$sql = "SELECT COUNT(auctionid) FROM bids WHERE auctionid = '".$auctionid."';
Than its basically to display them
$sql="SELECT id,auctionid,name,amount FROM bids WHERE auctionid='".$_GET['auctionid']."' ORDER BY amount ASC";
I know you were honest but it is an assignmen t and if you have done most of this by yourself those queries should help complete the rest of the tasks with no problems.