44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<? /*
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
This file is part of CAcert.
|
|
|
|
CAcert has been released under the CAcert Source License
|
|
which can be found included with these source files or can
|
|
be downloaded from the internet from the following address:
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
*/ ?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="800">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Organisations")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Organisation")?></td>
|
|
<td class="DataTD"><?=_("Domains")?></td>
|
|
<td class="DataTD"><?=_("Admins")?></td>
|
|
<td class="DataTD"><?=_("Edit")?></td>
|
|
<td class="DataTD"><?=_("Delete")?></td>
|
|
</tr>
|
|
<?
|
|
$query = "select * from `orginfo`";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$r2 = mysql_query("select * from `org` where `orgid`='$row[id]'");
|
|
$admincount = mysql_num_rows($r2);
|
|
$r2 = mysql_query("select * from `orgdomains` where `orgid`='$row[id]'");
|
|
$domcount = mysql_num_rows($r2);
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$row[O]?>, <?=$row[ST]?> <?=$row[C]?></td>
|
|
<td class="DataTD"><a href="account.php?id=26&orgid=<?=$row[id]?>"><?=_("Domains")?> (<?=$domcount?>)</a></td>
|
|
<td class="DataTD"><a href="account.php?id=32&orgid=<?=$row[id]?>"><?=_("Admins")?> (<?=$admincount?>)</a></td>
|
|
<td class="DataTD"><a href="account.php?id=27&orgid=<?=$row[id]?>"><?=_("Edit")?></a></td>
|
|
<td class="DataTD"><a href="account.php?id=31&orgid=<?=$row[id]?>"><?=_("Delete")?></a></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|