134 lines
4 KiB
PHP
134 lines
4 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.
|
|
*/ ?>
|
|
<?
|
|
if(intval($_GET['userid']) <= 0)
|
|
{
|
|
$email = mysql_escape_string($_POST['email']);
|
|
$query = "select * from `users` where `email` like '%$email%'";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) > 1) { ?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
|
</tr>
|
|
<?
|
|
while($row = mysql_fetch_assoc($res))
|
|
{ ?>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Email")?>:</td>
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=$row['email']?></a></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<? } elseif(mysql_num_rows($res) == 1) {
|
|
$row = mysql_fetch_assoc($res);
|
|
$_GET['userid'] = $row['id'];
|
|
} else {
|
|
printf(_("No users found matching %s"), $email);
|
|
}
|
|
}
|
|
|
|
if(intval($_GET['userid']) > 0)
|
|
{
|
|
$id = intval($_GET['userid']);
|
|
$query = "select * from `users` where `id`='$id'";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) <= 0)
|
|
{
|
|
echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
|
|
} else {
|
|
$row = mysql_fetch_assoc($res);
|
|
$query = "select sum(`points`) as `points` from `notary` where `to`='".$row['id']."'";
|
|
$dres = mysql_query($query);
|
|
$drow = mysql_fetch_assoc($dres);
|
|
?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><? printf(_("%s's Account Details"), $row['email']); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Email")?>:</td>
|
|
<td class="DataTD"><?=$row['email']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("First Name")?>:</td>
|
|
<td class="DataTD"><?=$row['fname']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Middle Name")?>:</td>
|
|
<td class="DataTD"><?=$row['mname']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Last Name")?>:</td>
|
|
<td class="DataTD"><?=$row['lname']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Suffix")?>:</td>
|
|
<td class="DataTD"><?=$row['suffix']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("First Name")?>:</td>
|
|
<td class="DataTD"><?=$row['fname']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Date of Birth")?>:</td>
|
|
<td class="DataTD"><?=$row['dob']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q1:</td>
|
|
<td class="DataTD"><?=$row['Q1']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - A1:</td>
|
|
<td class="DataTD"><?=$row['A1']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q2:</td>
|
|
<td class="DataTD"><?=$row['Q2']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - A2:</td>
|
|
<td class="DataTD"><?=$row['A2']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q3:</td>
|
|
<td class="DataTD"><?=$row['Q3']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - A3:</td>
|
|
<td class="DataTD"><?=$row['A3']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q4:</td>
|
|
<td class="DataTD"><?=$row['Q4']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - A4:</td>
|
|
<td class="DataTD"><?=$row['A4']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q5:</td>
|
|
<td class="DataTD"><?=$row['Q5']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Lost Password")?> - A5:</td>
|
|
<td class="DataTD"><?=$row['A5']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Assurance Points")?>:</td>
|
|
<td class="DataTD"><?=$drow['points']?></td>
|
|
</tr>
|
|
</table>
|
|
<? } } ?>
|