Files
web_2025/R3.01/tp/tp3/chifoumi/index.php
T
2026-04-08 08:49:36 +02:00

21 lines
379 B
PHP

<?php
$images = ["rock.png","paper.png","scissors.png"];
$isPlaying = true;
$playerChoice = 0;
$computerChoice = 1;
$message = "Win";
$class = "Win";
$imagePlayer = $images[$playerChoice];
$imageComputer = $images[$computerChoice];
include './views/header.php';
if ($isPlaying){
include './views/game.php';
include './views/message.php';
}
include './views/footer.php';
?>