83 lines
3.1 KiB
PHP
83 lines
3.1 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">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Your Assurance Points")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
|
<td class="DataTD"><b><?=_("Who")?></b></td>
|
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
|
</tr>
|
|
<?
|
|
$query = "select * from `notary` where `to`='".$_SESSION['profile']['id']."'";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$fromuser = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$row['from']."'"));
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$row['date']?></td>
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['from']?>"><?=$fromuser['fname']." ".$fromuser['lname']?></td>
|
|
<td class="DataTD"><?=$row['points']?></td>
|
|
<td class="DataTD"><?=$row['location']?></td>
|
|
<td class="DataTD"><?=$row['method']?></td>
|
|
</tr>
|
|
<? } ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
|
<td class="DataTD"><?=$_SESSION['profile']['points']?></td>
|
|
<td class="DataTD" colspan="2"> </td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Assurance Points You Issued")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
|
<td class="DataTD"><b><?=_("Who")?></b></td>
|
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
|
</tr>
|
|
<?
|
|
$query = "select * from `notary` where `from`='".$_SESSION['profile']['id']."' and `to`!='".$_SESSION['profile']['id']."'";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$fromuser = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$row['to']."'"));
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$row['date']?></td>
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['to']?>"><?=$fromuser['fname']." ".$fromuser['lname']?></td>
|
|
<td class="DataTD"><?=$row['points']?></td>
|
|
<td class="DataTD"><?=$row['location']?></td>
|
|
<td class="DataTD"><?=$row['method']?></td>
|
|
</tr>
|
|
<? } ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
|
<td class="DataTD"><?=$_SESSION['profile']['points']?></td>
|
|
<td class="DataTD" colspan="2"> </td>
|
|
</tr>
|
|
</table>
|
|
<p>[ <a href='javascript:history.go(-1)'>Go Back</a> ]</p>
|
|
|