Hi,
I have three joined tables. I want to be able to update the email field in j17_users.
I have the code below but I can't get it to work.
I have inserted the code in "Before record updated".
global $conn;
$sql = "update j17_users set j17_users.email='".$values["j17_users.email"]."' where id=".$keys["id"];
db_exec($sql,$conn); unset($values["j17_users.email"]);
return true;
Has anybody any ideas?
Tom