Advertisement
woh3

Untitled

Mar 4th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <?php
  3. 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>';
  4. echo "<center><table border=\"1\"><tr><th>col1</th><th>col2</th><th>col3</th><th>col4</th>";
  5.  
  6. $i=0;
  7.  
  8. foreach(glob($dir) as $f)
  9. { if ($i %4==0) { echo '</tr><tr>'; }
  10. echo '<td>', "<a href=\"goseigen-play.php?sgf_file=$f]\">$f</a>", '</td>'; }
  11.  
  12. echo '</table>'
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement