sqlite_fetch_array-2.php : sqlite_fetch_array « MySQL Database « PHP






sqlite_fetch_array-2.php

 
<?php
   $sqldb = sqlite_open("mydatabase.db");
   $results = sqlite_query($sqldb, "SELECT * FROM employee");
   while (list($empid, $name) = sqlite_fetch_array($results)) {
          echo "Name: $name (Employee ID: $empid)<br />";
   }
   sqlite_close($sqldb);
?>
  
  








Related examples in the same category

1.sqlite_fetch_array.php