<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td><img src="../img/icon.gif" border="0"> <a href="p_userslist.php" target="_self" > Users list </a></td>
</tr>
<tr>
<td colspan="2"><img src="../img/icon.gif" border="0"> <a href="p_sign_in.php" target="_self" > Add new users </a></td>
</tr>
<tr>
<td><img src="../img/icon.gif" border="0"> <a href="p_publications.php?mode=edit" target="_self" > Remove/Modify publications </a> </td>
</tr>
<tr>
<td colspan="2"><hr noshade></td>
</tr>
<tr>
<td><img src="../img/icon.gif" border="0"> <strong> Add publications:</strong><br></td>
<td ><strong>BibTex type:</strong></td>
</tr>
<?php
$type_list = array('InProceedings','Article','TechReport','PhDThesis','Book','InBook');
foreach($type_list as $pub_type) {
print("<tr>\n");
print("<td bgcolor=\"#f0f0f0\"><span class=\"tabbed\"><img src=\"../img/icon_minipost.gif\" border=\"0\"> <a href=\"p_pubform.php?pub_type=$pub_type\"> ".get_section_title($pub_type)." </a></span></td>\n");
print("<td bgcolor=\"#f0f0f0\"><a href=\"p_pubform.php?pub_type=$pub_type\">(".ucfirst($pub_type).")</a></td>\n");
print("</tr>\n");
}
?>
</table>
<p>
</p>
|