Domain list
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@26 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
parent
a35d786f5b
commit
2b0cbdf707
4 changed files with 64 additions and 1 deletions
|
@ -1,2 +1,32 @@
|
|||
<?php
|
||||
?>
|
||||
require("wantauth.php");
|
||||
require("tools.php");
|
||||
session_start();
|
||||
include("userhead.php");
|
||||
include("domainstatustypes.php");
|
||||
?>
|
||||
<div>
|
||||
<?php
|
||||
$dbh=db_open();
|
||||
$query=sprintf("SELECT * FROM domain WHERE client=%d",
|
||||
$_SESSION["client"]);
|
||||
$result=pg_query($dbh, $query);
|
||||
|
||||
$rows=pg_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=pg_fetch_array($result)) {
|
||||
printf("<tr><td>%s</td><td>%s</td></tr>",
|
||||
$row["domainname"], get_domainstatustype_name($row["status"]));
|
||||
}
|
||||
print("</table>");
|
||||
}
|
||||
db_close($dbh);
|
||||
?>
|
||||
</div>
|
||||
<a href="registerdomain.php"><?php print(_("Add domain")); ?></a>
|
Loading…
Add table
Add a link
Reference in a new issue