query($sql); } /** * Create an sqlite database file * * @param $path */ function create_db($path) { // Create the file if it doesn't exist if( ! file_exists($path)) { touch($path); } } }