134 lines
5.6 KiB
PHP
134 lines
5.6 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.
|
|
*/ ?>
|
|
<?
|
|
$total1 = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
$total4 = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`locid`='".$_GET['locid']."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
|
|
echo "<ul class='top'>\n<li>";
|
|
echo "<a href='wot.php?id=1'>"._("Home")." ("._("Listed").": $total1)</a>\n";
|
|
|
|
$display = "";
|
|
if(intval($_GET['locid']) > 0)
|
|
{
|
|
$loc = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='".$_GET['locid']."'"));
|
|
$display = "<ul class='top'>\n<li>\n".
|
|
"<a href='wot.php?id=1&locid=".$_GET['locid']."'>$loc[long] ("._("Listed").": $total4)</a>\n".
|
|
$display;
|
|
$_GET['regid'] = $loc['regid'];
|
|
}
|
|
|
|
if(intval($_GET['regid']) > 0)
|
|
{
|
|
$total3 = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`regid`='".$_GET['regid']."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
|
|
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".$_GET['regid']."'"));
|
|
$display = "<ul class='top'>\n<li>\n".
|
|
"<a href='wot.php?id=1®id=".$_GET['regid']."'>$reg[long] ("._("Listed").": $total3)</a>\n".
|
|
$display;
|
|
$_GET['ccid'] = $reg['ccid'];
|
|
}
|
|
|
|
if(intval($_GET['ccid']) > 0)
|
|
{
|
|
$total2 = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`ccid`='".$_GET['ccid']."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
|
|
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".$_GET['ccid']."'"));
|
|
$display = "<ul class='top'>\n<li>\n".
|
|
"<a href='wot.php?id=1&ccid=".$_GET['ccid']."'>$cnt[long] ("._("Listed").": $total2)</a>\n".
|
|
$display;
|
|
}
|
|
|
|
if($display)
|
|
echo $display;
|
|
|
|
if(intval($_GET['ccid']) <= 0)
|
|
{
|
|
echo "<ul>\n";
|
|
$query = "select * from `countries` order by `long`";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$listed = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`ccid`='".$row['id']."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
if($listed > 0)
|
|
echo "<li><a href='wot.php?id=1&ccid=$row[id]'>$row[long] ("._("Listed").": $listed)</a></li>\n";
|
|
}
|
|
echo "</ul>\n</li>\n</ul>\n<br>\n";
|
|
} elseif(intval($_GET['ccid']) > 0 && intval($_GET['regid']) <= 0 && intval($_GET['locid']) <= 0) {
|
|
echo "<ul>\n";
|
|
$query = "select * from `regions` where `ccid`='".$_GET['ccid']."' order by `long`";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$listed = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`regid`='".$row['id']."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
if($listed > 0)
|
|
echo "<li><a href='wot.php?id=1®id=$row[id]'>$row[long] ("._("Listed").": $listed)</a></li>\n";
|
|
}
|
|
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
|
|
} elseif(intval($_GET['regid']) > 0 && intval($_GET['locid']) <= 0) {
|
|
echo "<ul>\n";
|
|
$query = "select * from `users`,`notary` where `listme`='1' and `regid`='".$_GET['regid']."' and
|
|
`users`.`id`=`notary`.`to` group by `locid` HAVING SUM(`points`) >= 100";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$loc = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$row[locid]'"));
|
|
$listed = mysql_num_rows(mysql_query("select * from `users`,`notary` where `listme`='1' and
|
|
`locid`='".$row['locid']."' and `locid`!=0 and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
|
|
if($listed > 0)
|
|
echo "<li><a href='wot.php?id=1&locid=$loc[id]'>$loc[long] ("._("Listed").": $listed)</a></li>\n";
|
|
}
|
|
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
|
|
} elseif(intval($_GET['locid']) > 0){
|
|
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
|
|
}
|
|
|
|
$query = "select * from `users`,`notary` where `listme`='1' and
|
|
`ccid`='".intval($_GET['ccid'])."' and `regid`='".intval($_GET['regid'])."' and
|
|
`locid`='".intval($_GET['locid'])."' and `users`.`id`=`notary`.`to`
|
|
group by `notary`.`to` HAVING SUM(`points`) >= 100 order by `points` desc";
|
|
$list = mysql_query($query);
|
|
if(mysql_num_rows($list) > 0)
|
|
{
|
|
?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="550">
|
|
<tr>
|
|
<td class="title"><?=_("Name")?></td>
|
|
<td class="title"><?=_("Max Points")?></td>
|
|
<td class="title"><?=_("Contact Details")?></td>
|
|
<td class="title"><?=_("Email Assurer")?></td>
|
|
</tr>
|
|
<? while($row = mysql_fetch_assoc($list)) { ?>
|
|
<tr>
|
|
<td class="DataTD" width="100"><nobr><?=$row['fname']?></nobr></td>
|
|
<td class="DataTD"><?=maxpoints($row['id'])?></td>
|
|
<td class="DataTD"><?=$row['contactinfo']?></td>
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['id']?>">Email Me</a></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<br>
|
|
<? } ?>
|