Hello, I have one table inside aMember database that I would like to update (and insert data) within aMember code. What would be the best way to do that? Would it be queryQuick? Can you please provide me an example? I try to follow the documentation (http://www.amember.com/docs/API/Db) but I didn't have much success. Thanks, Adriano
Here is example: PHP: include "/amember/bootstrap.php";$di = Am_Di::getInstance();$di->db->query("update TABLENAME set key = ? where record_id=?", $value, $record_id);