Hello,
For a pervious action the forum data is updated like so:
<CFINSERT DATASOURCE="#Database.DSN#" TABLENAME="Posts"
FORMFIELDS="PostAuthor, PostHeader, PostMessage, TopPost">
I was wondering how to add the following to this not only do
I want the following operation to be carried I want the "INSERT" to
add a number to a field in another table "WHERE UsersID = #URL.ID#"
On its own the query looks like this:
<cfquery name="points" datasource="ukgl.co.uk">
SELECT UserPercent
FROM users
WHERE UsersID = #URL.ID#
</cfquery>
I want that to be incorporated into the "INSERT" query above
and also add "20" to the "UsersPercent" Field.
Many Thanks
Hugh