1
0
Fork 0
gnuviechadmin-historic/php/userhead.php

32 lines
930 B
PHP

<?php
include("commonhead.php");
?>
<div>
<table class="userhead">
<tr><td>
<img src="images/gnu.png" width="45" height="43" alt="small GNU head"/>
</td><td>
<p>
<?php
require_once("usertypes.php");
$query=sprintf("SELECT name, type, client FROM sysuser WHERE id=%d",
$_SESSION["userid"]);
$result=db_query($dbh, $query);
$row=db_fetch_array($result);
printf(_("Logged in as %s (%s)"), $row["name"],
get_usertype_name($row["type"]));
print("<br/>");
$_SESSION["client"]=$row["client"];
$query=sprintf("SELECT client.*, country.name AS cname FROM client, country WHERE client.id=%d AND country.id=client.country", $row["client"]);
$result=db_query($dbh, $query);
$row=db_fetch_array($result);
printf("%s %s, %s %s, %s %s, %s %s", $row["firstname"], $row["lastname"],
$row["address1"], $row["address2"], $row["zipcode"], $row["town"],
$row["state"], $row["cname"]);
?>
</p></td></tr></table>
</div>