You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/pages/wot/1.php

113 lines
4.4 KiB
PHP

<? /*
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
*/ ?>
<?
$res=mysql_fetch_assoc(mysql_query("select sum(acount) as summe from countries"));
$total1 =$res['summe'];
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`='".intval($_GET['locid'])."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&locid=".intval($_GET['locid'])."'>$loc[name] ("._("Listed").": $loc[acount])</a>\n".
$display;
$_GET['regid'] = $loc['regid'];
}
if(intval($_GET['regid']) > 0)
{
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".intval($_GET['regid'])."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&regid=".intval($_GET['regid'])."'>$reg[name] ("._("Listed").": $reg[acount])</a>\n".
$display;
$_GET['ccid'] = $reg['ccid'];
}
if(intval($_GET['ccid']) > 0)
{
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".intval($_GET['ccid'])."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&ccid=".intval($_GET['ccid'])."'>$cnt[name] ("._("Listed").": $cnt[acount])</a>\n".
$display;
}
if($display)
echo $display;
if(intval($_GET['ccid']) <= 0)
{
echo "<ul>\n";
$query = "select * from countries where acount>0 order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
echo "<li><a href='wot.php?id=1&ccid=$row[id]'>$row[name] ("._("Listed").": $row[acount])</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='".intval($_GET['ccid'])."' and acount>0 order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
echo "<li><a href='wot.php?id=1&regid=$row[id]'>$row[name] ("._("Listed").": $row[acount])</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 locations where regid='".intval($_GET['regid'])."' and acount>0 order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
echo "<li><a href='wot.php?id=1&locid=$row[id]'>$row[name] ("._("Listed").": $row[acount])</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 *, `users`.`id` as `id` 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']?> <?=substr($row['lname'], 0, 1)?></nobr></td>
<td class="DataTD"><?=maxpoints($row['id'])?></td>
<td class="DataTD"><?=$row['contactinfo']?></td>
<td class="DataTD"><a href="wot.php?id=9&amp;userid=<?=intval($row['id'])?>"><?=_("Email Me")?></a></td>
</tr>
<? } ?>
</table>
<br>
<? } ?>