index

<head>
<title>MinuteWar Move Banker</title>
</head>

<body>

<h1>MinuteWar Move Banker</h1>

<h2>What Is It?</h2>

<p>This is primarily a set of web pages that allow MinuteWar teams to share information, 
specifically, their currently banked moves. I should thank Scout because I borrowed html 
liberally from the MinuteWar web pages. While banking a move, you can store enough information
so that you can make your capture report with just a couple of clicks.
<p>More information is available in the <a href="faq.html">FAQ</a>.

<hr><h2>Go to the Move Banker</h2>
Simply enter your team name (demo for testing) and player name (which can be any "name" you like) and click "Enter"<br>
This will take you to a password protected page. For testing, team name=demo password=demo.
<FORM action=movedb.php method=GET>
<table border=1><tr><td>
<table>
<tr><td>Team:</td><td><SELECT NAME=T><OPTION VALUE=""></OPTION>
<?php
include 'localsettings.php';
$sql "SELECT TeamName from MWMoves";
$result mysql_query($sql$db);
echo 
"Found ".mysql_num_rows($result)." teams\n";
if ((!
$result) || (mysql_num_rows($result)==0)) {
        echo 
"Failed to retrieve team list from db<p>";    
        echo 
"query was $sql<p>";    
} else {
        while(
$myrow mysql_fetch_array($result)) {
                echo 
"<OPTION VALUE=$myrow[0]>$myrow[0]\n";
        } 
// while
}
?>
</SELECT></td></tr>
<tr><td>Player Name:</td><td><INPUT name=P type=text size=15></td></tr>
<tr><td colspan=2><Input type=submit value="Enter"></td></tr>
</td></tr></table>
</table>
</FORM>

<hr><h2>Create a new team move bank</h2>
Enter the name you would like for your team and click Create...<br>
Don't forget your password :)
<FORM action=addteam.php method=POST>
<table border=1><tr><td>
<table>
<tr><td>Team Name:</td><td><INPUT name=T type=text size=15></td></tr>
<tr><td>Game:</td><td><SELECT name=G><OPTION VALUE=""></OPTION>
<?php
$sql 
"SELECT GameName from MWGames";
$result mysql_query($sql$db);
echo 
"Found ".mysql_num_rows($result)." games\n";
if ((!
$result) || (mysql_num_rows($result)==0)) {
        echo 
"Failed to retrieve game list from db<p>";    
        echo 
"query was $sql<p>";    
} else {
        while(
$myrow mysql_fetch_array($result)) {
                echo 
"<OPTION VALUE=\"$myrow[0]\">$myrow[0]\n";
        } 
// while
}
?>
</SELECT></td></tr>
<tr><td>Password:</td><td><INPUT name=PW type=text size=15></td></tr>
<tr><td colspan=2><br><Input type=submit value="Create Team"></td></tr>
</table>
</td></tr></table>
</FORM>
<hr><p>Comments can be sent to mwmb at fourthlake dot com<p>


&nbsp;

<!--
Issues & Enhancements:
race conditions because of using $Id to index into move list
link bar at top and bottom to access sections
db-based faq page
zoom in tighter on Tiger Map
link to boulter's map page from there
mechanism to edit shortcomment in addmove
add remaining moves to game board display
cache board data
remove draw.php (or use it as an include from movedb)
-->

</body>

</html>