Browse Source

WIP: database connectie

simon
Simondb 4 years ago
parent
commit
ee4c64f373
2 changed files with 18 additions and 0 deletions
  1. BIN
      Northwind_large.sqlite
  2. 18
    0
      index.php

BIN
Northwind_large.sqlite View File


+ 18
- 0
index.php View File

@@ -0,0 +1,18 @@
<html>
<body>
<?php
//('Northwind_large.sqlite');
$db = new PDO("sqlite:Northwind_large.sqlite");

$test = $db->prepare("SELECT * FROM Category");
$test->execute();
$row = $test->fetch();
$db = null;

foreach(){
}
//https://stackoverflow.com/questions/16728265/how-do-i-connect-to-an-sqlite-database-with-php
?>
</body>
</html>

Loading…
Cancel
Save