Kurulum Tablosu Bu Bununla Veritabanına Bağlanıyor
if($UploadsWritableOK==1 && $SQLiteOK==1 && !file_exists('uploads/uploads.sqlite')){
// all settings are fine, and there is no database file. Create it now.
$db = sqlite_open('uploads/uploads.sqlite');
sqlite_query($db,"
CREATE TABLE 'temp' (
hash text,
file_id integer,
file_name text,
user_info text,
date integer
);
CREATE TABLE 'uploads' (
id integer(32) not null primary key unique,
filename text(100),
date integer,
user_info text,
hash text
);
");
sqlite_close($db);
}
echo $buf;Ama Bir Türlü Bağlanamadım