Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Gioco del Tris (Web) - tris.php

tris.php

Caricato da: A_butta
Scarica il programma completo

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head>
  5.         <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  6.         <meta name="author" content="A_BUTTA (Buzz)" />
  7.         <title>Tris</title>
  8.     <link type="text/css" rel="stylesheet" href="stile.css"/>
  9.    
  10. </head>
  11.  
  12. <body>
  13.  
  14. <div id="pagina">
  15.     <div id="banner"><span class="text">Buzz Tris</span></div>
  16.     <div id="start">
  17.         <label style="font-size: 12px;">Giocatore 1: </label>
  18.         <input style="height: 12px; width: 93px; margin-bottom: 5px;" type="text" value="" id="Giocatore1"/><br />
  19.         <label style="font-size: 12px;">Giocatore 2: </label>
  20.         <input style="height: 12px; width: 93px;" type="text" value="" id="Giocatore2"/><br />
  21.         <input onclick="javascript: Giocatori(document.getElementById('Giocatore1').value, document.getElementById('Giocatore2').value)"
  22.                type="submit" value="Gioca!" id="gioca" style="height: 20px; width: 162px; margin-left: -1px; margin-top:5px; cursor: pointer;" />
  23.     </div>
  24.     <table id="quadro">
  25.         <tr>
  26.     <?php
  27.         for ($i=1;$i<=9;$i++)
  28.         {
  29.             echo "\n";
  30.             echo '          <td id="q'.$i.'" class="q" onclick="mossa(\'q'.$i.'\')"></td>';
  31.             if ($i%3 == 0 && $i!=9) {echo '        </tr>'."\n".'        <tr>';}
  32.             elseif ($i==9) {echo '      </tr>';}
  33.         }
  34.     ?>
  35.     </table>
  36.    
  37.     <div id="statusbar">
  38.         <span class="text" id="turno">
  39.             Turno: Giocatore
  40.         </span><br />
  41.         <span class="text" id="punteggio">
  42.            
  43.         </span>
  44.     </div>
  45. </div>
  46.  
  47. <script type="text/javascript" src="script.js"></script>
  48. </body>
  49. </html>