Create("churchil_demo"); $sql2 = new MySQL_class; $sql2->Create("churchil_demo"); /* Delete the specified list of Auctions. Also clean up the other * tables which list the number of Auctions occuring in each state, etc. */ if ($DelList) { $id = current($DelList); echo ("

\n"); } ?>
Delete Auctions
Chose which Auctions to delete:

Red Date means the auction has not occured yet.

Query("select ID, Name, StartTime from Auctions order by StartTime"); for ($i = 0; $i < $sql->rows; $i++) { $sql->Fetch($i); $id = $sql->data[ID]; $name = $sql->data[Name]; $time = $sql->data[StartTime]; $utime = MkUnixTime($time); echo("\n"); echo(" \n"); /* If the auction has not occured yet, print the date in red */ if ($utime < $now) { echo("\n"); } else { echo("\n"); } } ?>
 Auction NameDate
$name$time
$time