diff options
Diffstat (limited to 'pages/account/26.php')
-rw-r--r-- | pages/account/26.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pages/account/26.php b/pages/account/26.php new file mode 100644 index 0000000..f8b195d --- /dev/null +++ b/pages/account/26.php @@ -0,0 +1,42 @@ +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2008 CAcert Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ ?> +<? + $query = "select * from `orginfo` where `id`='".intval($_REQUEST['orgid'])."'"; + $row = mysql_fetch_assoc(mysql_query($query)); +?> +<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="400"> + <tr> + <td colspan="3" class="title"><? printf(_("%s's Domains"), $row['O']); ?> (<a href="account.php?id=28&orgid=<?=intval($row['id'])?>"><?=_("Add")?></a>)</td> + </tr> + <tr> + <td class="DataTD"><?=_("Domain")?></td> + <td class="DataTD"><?=_("Edit")?></td> + <td class="DataTD"><?=_("Delete")?></td> + </tr> +<? + $query = "select * from `orgdomains` where `orgid`='".intval($_REQUEST['orgid'])."'"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { ?> + <tr> + <td class="DataTD"><?=sanitizeHTML($row['domain'])?></a></td> + <td class="DataTD"><a href="account.php?id=29&orgid=<?=intval($row['orgid'])?>&domid=<?=intval($row['id'])?>"><?=_("Edit")?></a></td> + <td class="DataTD"><a href="account.php?id=30&orgid=<?=intval($row['orgid'])?>&domid=<?=intval($row['id'])?>"><?=_("Delete")?></a></td> + </tr> +<? } ?> +</table> |