Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sqlite with PHP

Status
Not open for further replies.

pegazaus

Instructor
Aug 16, 2005
22
0
0
SE
Hello Good people

I'm beginner with PHP and I'm trying to create a simple guest book. I'm using Sqlite because I'm familiar with it and I'm trying to spare me the complications of installing Mysql or other DB-applacation. Does anybody knows a good tutorial about Sqlite with PHP?

Thx
 
hi pegazaus!

if u are familiar with SQLite why don't you just call SQLite - Functions in PHP?

In PHP5 u don't even need any includes, just call

$dbhandle = sqlite_open('dbname',chmod,err_var);
$result = sqlite_query($dbhandle,'select count(*) from gb');

and so on...

is the best source anyways.



__________________________________________
a programmer is a tool that converts coffee into code...
aschi666, sthcomputing.de
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top