PHP Classes

File: pages/p_session_bar.php

Recommend this page to a friend!
  Classes of Javier AP   Pergamus Publication Manager   pages/p_session_bar.php   Download  
File: pages/p_session_bar.php
Role: Auxiliary script
Content type: text/plain
Description: Session options bar
Class: Pergamus Publication Manager
Web based manager for scientific publications
Author: By
Last change: New version 1.0.
Date: 19 years ago
Size: 683 bytes
 

Contents

Class file image Download

<?php
if (isset($_SESSION["USER"]) && isset($_SESSION["PW"])) {?>
<p align="left">
<font size="2"><img src="../img/secure.gif" border="0" align="middle"> Logged in as: <font color="#990000"><?= $_SESSION["USER"] ?></font> |
<a href="p_login.php?action=exit">[Close session]</a> &nbsp;
<a href="p_panel.php">[Control panel]</a></font> &nbsp;
<a href="p_publications.php">[Publications page]</a></font> &nbsp;
<a href="p_search.php">[Search]</a></font> &nbsp;
<?php } else { ?>
<p align="right">
<font size="2" align="right"><a href="p_login.php"><img src="../img/private.gif" width="11" height="10" border="0" align="absbottom"> Login</a></font>
<?php } ?>
</p>