Hi,

I am trying to run this code on the Linux box...

Code:
<?php

// create a SQLite3 database file with PDO and return a database handle (Object Oriented)
try{

$dbHandle = new PDO('sqlite:test.db');

}catch( PDOException $exception ){

die($exception->getMessage());

}
// check if table/s needs to be created (PDO)
$statement
...