";
$found = 0;
$result = db_query('SELECT uid, name, mail FROM {users}');
while ($row = db_fetch_object($result)) {
if (email_verify_check($row->mail)) {
$content .= "
". check_plain($row->name) ." | ". check_plain($row->mail);
if (++$found >= 100) break;
}
}
$content .= "";
unset($found, $result, $row); // Destroy variables
print theme("page", $content);
} |