1
0
Fork 0
gnuviechadmin-historic/php/domainlist.php

35 lines
866 B
PHP

<?php
require("wantauth.php");
require("tools.php");
$dbh=db_open();
session_start();
include("userhead.php");
include("domainstatustypes.php");
?>
<div>
<?php
$query=sprintf("SELECT * FROM domain WHERE client=%d",
$_SESSION["client"]);
$result=db_query($dbh, $query);
$rows=db_num_rows($result);
if ($rows==0) {
print("<p>" . _("You don't have any domains registered.") . "</p>");
}
else {
print("<p>" . _("Here is a list of your currently registered domains.") . "</p>");
printf("<table><tr><th>%s</th><th>%s</th></tr>",
_("Domain name"), _("Status"));
while ($row=db_fetch_array($result)) {
printf("<tr><td>%s</td><td>%s</td></tr>",
$row["domainname"], get_domainstatustype_name($row["status"]));
}
print("</table>");
}
?>
</div>
<a href="registerdomain.php"><?php print(_("Add domain")); ?></a>
<?php
include("commonfoot.php");
?>