Esempio n. 1
0
<?php

error_reporting(0);
include_once 'core/init.php';
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $vezJogador = $_POST['vezJogador'];
    Velha::processaJogada($vezJogador, $_POST);
} else {
    Velha::iniciarJogo();
}
?>
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Jogo da Velha</title>
        <style>
            .colunaVelha {
                font: bold 16px Verdana, Arial;
                height:35px;
                width:35px;
            }
            .blue {
                color:blue;
            }
            .red {
                color:red;
            }
        </style>
    </head>
    <body>