Source of “expert.php”
<?php // Emacs settings: -*- mode: Fundamental; tab-width: 4; -*-

////////////////////////////////////////////////////////////////////////////
//                                                                        //
// Minesweeper, implemented in JavaScript                                 //
//                                                                        //
// Copyright 1998-2007, Andrew D. Birrell                                 //
//                                                                        //
// PHP for intermediate page                                              //
//                                                                        //
////////////////////////////////////////////////////////////////////////////

$cols = 30;
$rows = 16;
$mines = 99;
require("minesweeper.php");

?>
<H2>Minesweeper</H2>
<P>
This is the expert version.  You might want to try the
<A HREF="./">beginner</A> or <A HREF="intermediate.php">intermediate</A>
versions first.
The documentation is on the <A HREF="./">beginner</A> page.
<BR STYLE="clear: both">
<HR>
<?php require("../parts/links.txt") ?>
</BODY>
</HTML>
End of listing