예제 #1
0
파일: process.php 프로젝트: thezawad/Sicily
function StartContest(&$arg)
{
    $cid = safefetch($arg, 'cid');
    $contest = new ContestsTbl($cid);
    $contest->Get() or error("No such contest");
    $contest->update['starttime'] = date('Y-m-d H:i:s');
    $contest->Update();
    MsgAndRedirect("contests.php");
}