Advertisement
woh3

Untitled

Mar 4th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2.  
  3. $dir = './goseigen/';
  4. $files1 = scandir($dir, 0);
  5. $index=count($files1);
  6.  
  7. echo '<center><h3>Here is a collection of Games by the Go Master <a href="http://en.wikipedia.org/wiki/Go_Seigen">Go Seigen</a></h3></center>';
  8. echo "<center><table border=\"1\">";
  9.  
  10. for($i=0; $i < $index; $i++)
  11. {
  12. if($files1[$i] != '.' && $files1[$i] != '..')
  13. {
  14. echo "<tr><td><a href=\"goseigen-play.php?sgf_file=$files1[$i]\">$files1[$i]</a></td></tr>";
  15. }
  16. }
  17. echo "</table></center>";
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement