I'm having a little problem with this MySQL query. I've already used an suggestion I've seen in another question but still doesn't work....
Here's the code
$kernel->db->query( "UPDATE `" . TABLE_PREFIX . "users`
SET `total_downs` = `total_downs` + 1
WHERE `phcdl_files`.`file_author` = " . $file['file_author'] );
Which gives
Invalid SQL Query
Unknown column 'phcdl_files.file_author' in 'where clause' (MySQL error no; 1054)
phcdl_filesin your query?? – mellamokb Feb 25 '11 at 17:40phcdl_filesisn't a table in your query. – Martin Smith Feb 25 '11 at 17:40usersandfile_author? – Joe Stefanelli Feb 25 '11 at 17:42