Advertisement
Evolutio

Untitled

Nov 2nd, 2011
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <body>
  2. <script type="text/javascript" src="wz_tooltip.js"></script>
  3. <script type="text/javascript" src="tip_balloon.js"></script>
  4. </body>
  5.  
  6. onmouseover="Tip('F01')" onmouseout="UnTip()"
  7.  
  8. <?php
  9. $folder = "screens";
  10. $verzeichnis = openDir("$folder");
  11. while ($file = readDir($verzeichnis)) {
  12. if ($file != "." && $file != "..") {
  13.  echo "<a href=\"$folder/$file\">$file</a><br>\n";
  14.  }
  15. }
  16.  
  17. closeDir($verzeichnis);
  18. ?>
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement