include "header.html" ?>
$domains = get_domain_list();
$count = count($domains);
?>
Select one of the domains.
for ($i = 0; $i < $count; $i++)
{
$table = $domains[$i];
$domain = table_to_domain($table);
$total = total_in_table($table);
$thash = get_thash($table);
echo "- $domain ($total)
";
}
?>
include("footer.html") ?>