I have a register page on my site which feeds POST data into a PHP file, which then INSERTs it into a database. The problem is, the query:
class DB extends SQLite3{
function __construct(){
$this->open('db/userpass.db');
}
}
$db = new DB();
$db->query("INSERT INTO userpass VALUES($user, $encrypted_pass)");
isn't querying. Picture book is here: https://i.sstatic.net/GnxFF.jpg
You can see my problem in the album. However, I most definitely query'd.
$db->query.