Browse Source

test

master
BARRAUX Arthur 2 years ago
parent
commit
4e434a0057
  1. BIN
      bdd.db
  2. 13
      index.html
  3. 7
      index.php
  4. 0
      script.js

BIN
bdd.db

Binary file not shown.

13
index.html

@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
<title>Document</title>
</head>
<body>
Hello world !
</body>
</html>

7
index.php

@ -0,0 +1,7 @@
<?php
$bdd = new SQlite3('bdd.db');
$query = $bdd -> query('SELECT * FROM Info');
$res = $query -> fetchall();
var_dump($res);
?>

0
script.js

Loading…
Cancel
Save