Current Signup List
" . $buffer . ""; } fclose($current); if (strlen($line) == 0) { echo "
No one is currently signed up.
"; } else { echo "
    " . $line . "
"; } } ?>
Past Participants
" . $parsed->{"nick"} . " has had " . count($parsed->{"turns"}); if (count($parsed->{"turns"}) == 1) { $line = $line . " turn: "; } else { $line = $line . " turns: "; } $first = true; foreach ($parsed->{"turns"} as $turn) { if ($first) { $first = false; } else { $line = $line . ", "; } if (strlen($turn->{"url"}) == 0) { $line = $line . $turn->{"date"}; } else { $line = $line . "{"url"} . "\" target=\"_blank\">" . $turn->{"date"} . ""; } } $line = $line . ""; } fclose($history); if (strlen($line) == 0) { echo "
No one has had a turn yet.
"; } else { echo ""; } } ?>