-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (40 loc) · 1.03 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tic-Tac-Toe Game</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<table style="width:5%">
<tr>
<th><input type="text" name="11"></th>
<th><input type="text" name="12"></th>
<th><input type="text" name="13"></th>
</tr>
<tr>
<th><input type="text" name="21"></th>
<th><input type="text" name="22"></th>
<th><input type="text" name="23"></th>
</tr>
<tr>
<th><input type="text" name="31"></th>
<th><input type="text" name="32"></th>
<th><input type="text" name="33"></th>
</tr>
</table>
<?php
session_start();
if (session_status() == PHP_SESSION_ACTIVE) {
session_destroy();
}
?>
<script src='js/main.js'></script>
</body>
</html>