You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
603 B
28 lines
603 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Roulette à eau</title>
|
|
<script type="text/javascript" src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<code>
|
|
<?php
|
|
$bdd = new SQlite3('bdd.db');
|
|
$query = $bdd -> query('SELECT * FROM Info');
|
|
$res = $query -> fetchArray();
|
|
var_dump($res);
|
|
?>
|
|
|
|
</code>
|
|
<svg id="roulette" width="800" height="800">
|
|
<g stroke="black" stroke-width=2></g>
|
|
</svg>
|
|
<script type="text/javascript">
|
|
draw_roulette(3, 200, 200, 200, ["arthur", "jimmy", "Jamel"]);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|