Groepswerk PHP verbinden database
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.

linking.php 321B

12345678910111213
  1. <html>
  2. <?php
  3. // we want to acces the db browser sqlite server from the pc
  4. //https://www.a2hosting.com/kb/developer-corner/sqlite/connect-to-sqlite-using-php
  5. $myRepo = new Repo('sqlite:C:\Program Files (x86)\Ampps\www\groepswerk\Northwind_large.sqlite');
  6. $result = $myRepo->query("SELECT * FROM Category");
  7. ?>
  8. </html>