Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 14th, 2010 | Syntax: None | Size: 2.43 KB | Hits: 20 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. <?php
  2.  
  3. error_reporting(E_ALL);
  4. session_start();
  5.  
  6. ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>Artists</title>
  11. <script type="text/javascript" src="dropdowntabfiles/dropdowntabs.js">
  12.  
  13. </script>
  14. <link rel="stylesheet" type="text/css" href="dropdowntabfiles/ddcolortabs.css" />
  15. <style type="text/css">
  16. <!--
  17. body {
  18.         background-image: url(images/bg.gif);
  19.         background-repeat: repeat;
  20. }
  21. body h2 {
  22.         font-family: "Zag Bold";
  23.         font-size: 30px;
  24. }
  25. -->
  26. </style><body>
  27. <?php
  28.  
  29. if(isset($_SESSION['loginid']))
  30. {
  31. ?>
  32. <h2>Select Artists by Genre</h2>
  33.  
  34. <div id="colortab" class="ddcolortabs">
  35. <ul>
  36. <li><a href="index.php" title="Home"><span>Home</span></a></li>
  37. <li><a href="artists/rock.html" title="Rock" rel="dropmenu1_a"><span>Rock</span></a></li>
  38. <li><a href="artists/hardcore.html" title="Hardcore" rel="dropmenu2_a"><span>Hardcore</span></a></li>  
  39. <li><a href="artists/punk.html" title="Punk" rel="dropmenu3_a"><span>Punk</span></a></li>      
  40. </ul>
  41. </div>
  42.  
  43. <div class="ddcolortabsline">&nbsp;</div>
  44.  
  45.  
  46. <!--1st drop down menu -->                                                  
  47. <div id="dropmenu1_a" class="dropmenudiv_a">
  48. <a href="artists/Instake.php">Instake</a>
  49. <a href="artists/daighila.php">Daighila</a>
  50. <a href="artists/sicknerds.php">The Sicknerds</a>
  51. <a href="artists/handle.php">Handle with Care</a>
  52. </div>
  53.  
  54.  
  55. <!--2nd drop down menu -->                                                
  56. <div id="dropmenu2_a" class="dropmenudiv_a" style="width: 150px;">
  57. <a href="artists/kotm.php">Kids On The Move</a>
  58. <a href="artists/secondcombat.php">Second Combat</a>
  59. <a href="artists/df.php">Disasterfunhouse</a>
  60. <a href="artists/nostalgia.php">Nostalgia</a>
  61. </div>
  62.  
  63. <!--3rd drop down menu -->                                                
  64. <div id="dropmenu3_a" class="dropmenudiv_a" style="width: 150px;">
  65. <a href="artists/c14.php">Carbon 4 Teen</a>
  66. <a href="artists/brayok.php">Brayok</a>
  67. <a href="artists/tliberals.php">The Liberals</a>
  68. <a href="artists/cdung.php">Carburetor Dung</a>
  69. </div>
  70.  
  71. <script type="text/javascript">
  72. //SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
  73. tabdropdown.init("colortab", 3)
  74. </script>
  75. <?php
  76. }
  77. else
  78. {
  79. echo "I'm sorry, but you have to login in order to upload a file";
  80. }
  81. ?>
  82. </body>
  83. </html>