Guest User

Untitled

a guest
May 20th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. <?php
  2. include "acl-connect.php";
  3.  
  4. $pgtitle[0] = "Reports - Overview";
  5. $pgtitle[1] = "Reports - Top Categories";
  6. $pgtitle[2] = "Reports - Top Links";
  7. $pgtitle[3] = "Administration - Categories";
  8. $pgtitle[4] = "Administration - Links";
  9.  
  10. $ClRowEven = "#EEEEBB";
  11. $ClRowOdd = "#DDDDAA";
  12. ?>
  13. <html>
  14. <head>
  15. <title> ACLink - Link Click Counter </title>
  16. <style>
  17. TD.LISTODD { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; background: #EEEEBB;border-style:solid; border-width:1; border-color:black}
  18. TD.LISTEVEN { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; background: #CCCC99;border-style:solid; border-width:1; border-color:black}
  19. TD.ACL_TITLE { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 10pt; font-weight: bold; background: #8888BB;border-style:solid; border-width:1; border-color:black}
  20. TD.ACL_MENU { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; background: #8888BB;border-style:solid; border-width:1; border-color:black}
  21. TD.ACL_MAIN { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; background: #FFFFFF; }
  22. INPUT { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; }
  23. SELECT { font-family : Tahoma,Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; }
  24. </style>
  25. </head>
  26. <body>
  27.  
  28. <table width="100%" border=0 cellspacing=0 cellpadding=2>
  29. <tr>
  30. <td colspan=2 class="ACL_TITLE">ACLink - <?php echo $pgtitle[$v] ?></td>
  31. </tr>
  32. <tr>
  33. <!-- Navigation Section -->
  34. <td width=120 class="ACL_MENU" valign="top">
  35. <b>Reports</b><br>
  36. <a href="acladmin.php?v=1">Top Categories</a><br>
  37. <a href="acladmin.php?v=2">Top Links</a><br>
  38. <br>
  39. <b>Administration</b><br>
  40. <a href="acladmin.php?v=3">Categories</a><br>
  41. <a href="acladmin.php?v=4">Links</a><br>
  42. <br>
  43. <a href="acllogout.php">Logout</a><br>
  44. </td>
  45.  
  46. <!-- Main Section -->
  47. <td width="100%" valign="top" class="ACL_MAIN">
  48. <?php
  49. if ($_COOKIE["ACLADMIN"] != md5($adminuser.$adminpass)) {
  50. include "acllogin.php";
  51. } else {
  52. switch($v) {
  53. case 1: include "admtopcat.php"; break;
  54. case 2: include "admtoplink.php"; break;
  55. case 3: include "admcat.php"; break;
  56. case 4: if (isset($lnk_url)) include "acladdlink.php";
  57. include "admlnk.php"; break;
  58. default: include "acllogin.php"; break;
  59. }
  60. }
  61. ?>
  62. </td>
  63. </tr>
  64. </table>
  65. </body>
  66. </html>
Add Comment
Please, Sign In to add comment