예제 #1
0
<?php

require_once "../../phplib/util.php";
// The seq field is guaranteed to be incremental from 1 to <number of rows>
$count = Model::factory('RandomWord')->count();
$choice = rand(1, $count);
$rw = RandomWord::get_by_seq($choice);
echo $rw ? $rw->cuv : '';