55 lines
1.9 KiB
PHP
55 lines
1.9 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="400">
|
|
<tr>
|
|
<td colspan="3" class="title"><?=_("Organisations")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD">#</td>
|
|
<td class="DataTD"><?=_("Organisation")?></td>
|
|
<td class="DataTD"><?=_("Admins")?></td>
|
|
</tr>
|
|
<?
|
|
$query = "select * from `orginfo`,`org` where `orginfo`.`id`=`org`.`orgid` and `org`.`memid`='".$_SESSION[profile][id]."'";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
//number of admins for the org
|
|
$r2 = mysql_query("select * from `org` where `orgid`='$row[id]'");
|
|
$admincount = mysql_num_rows($r2);
|
|
|
|
// number of domains for the org
|
|
$r2 = mysql_query("select * from `orgdomains` where `orgid`='$row[id]'");
|
|
$domcount = mysql_num_rows($r2);
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$row['id']?></td>
|
|
<td class="DataTD"><?=$row['O']?>, <?=$row['ST']?> <?=$row['C']?></td>
|
|
<td class="DataTD"><a href="account.php?id=32&orgid=<?=$row[id]?>"><?=_("Admins")?> (<?=$admincount?>)</a></td>
|
|
</tr>
|
|
<?
|
|
// display the domains of each organisation
|
|
$query3 = "select * from `orgdomains` where `orgid`='$row[id]'";
|
|
$res3 = mysql_query($query3);
|
|
while($detailorg = mysql_fetch_assoc($res3))
|
|
{
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$detailorg['id']?></td>
|
|
<td class="DataTD"><?=_("Domain available")?></td>
|
|
<td class="DataTD"><?=$detailorg['domain']?></td>
|
|
</tr>
|
|
<? } } ?>
|
|
</table>
|