12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
include 'helpers.php';
|
|
|
|
// view variables
|
|
$message = "";
|
|
$grid = [0,1,0,1,0,2,2,0,0];
|
|
$playerTurn = 1; // 1 or 2
|
|
|
|
|
|
include './views/tictactoe.php';
|
|
|