User information separated to extra file
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@25 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
parent
68203779c0
commit
a35d786f5b
4 changed files with 51 additions and 2 deletions
31
php/userhead.php
Normal file
31
php/userhead.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<div>
|
||||
<table>
|
||||
<tr><td>
|
||||
<img src="images/gnu.png" width="45" height="43" alt="small GNU head"/>
|
||||
</td><td>
|
||||
<p>
|
||||
<?php
|
||||
require("usertypes.php");
|
||||
|
||||
$dbh = db_open();
|
||||
|
||||
$query=sprintf("SELECT name, type, client FROM sysuser WHERE id=%d",
|
||||
$_SESSION["userid"]);
|
||||
$result=pg_query($dbh, $query);
|
||||
$row=pg_fetch_array($result);
|
||||
printf(_("Logged in as %s (%s)"), $row["name"],
|
||||
get_usertype_name($row["type"]));
|
||||
|
||||
print("<br/>");
|
||||
|
||||
$query=sprintf("SELECT client.*, country.name AS cname FROM client, country WHERE client.id=%d AND country.id=client.country", $row["client"]);
|
||||
$result=pg_query($dbh, $query);
|
||||
$row=pg_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"]);
|
||||
|
||||
db_close($dbh);
|
||||
?>
|
||||
</p></td></tr></table>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue