Copy link to clipboard
Copied
i can query the list fine using:
that populates the list per user id.
now when the user selects a new item from the list
it does not update
here is the update query:
thanks in advance for your help!
theo werntz ii
Copy link to clipboard
Copied
this has been resolved! i needed to limit what the form was updating, just the list fk id and date that the new update was entered.
$updateSQL = sprintf("update ASBodyType as a
left join BSType as b
on b.Id = a.BodyType
set a.BodyType=%s, a.Date=now()
where a.UIdFk='1'",
GetSQLValueString($_POST['BodyType'], "int"));
thanks again for your help!