i would like to access a sqlite3 database with php. i have seen that i need a php version that is newer then the one delivered with the sdk. it should be 5.1 or higher. so i downloaded php 5.2.5 and adapted the Makefile and the file get_php. if i use the old configurations it works but still without pdo extension. --prefix=$ROOTFS \ --disable-all \ --with-sqlite \ --with-config-file-path=/etc/ \ --enable-discard-path
when i change the configurations as follow it doesn't work. --prefix=$ROOTFS \ --disable-all \ --enable-pdo \ --with-pdo-sqlite \ --with-sqlite \ --with-config-file-path=/etc/ \ --enable-discard-path in my browser i get always the following message. No input file specified. has anyone an idea what the problem could be?
