BARRAUX Arthur
2 years ago
4 changed files with 7 additions and 13 deletions
Binary file not shown.
@ -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> |
|
@ -0,0 +1,7 @@ |
|||||
|
<?php |
||||
|
$bdd = new SQlite3('bdd.db'); |
||||
|
$query = $bdd -> query('SELECT * FROM Info'); |
||||
|
$res = $query -> fetchall(); |
||||
|
var_dump($res); |
||||
|
|
||||
|
?> |
Loading…
Reference in new issue