Tech718
Technical User
- Jan 24, 2008
- 13
Hi,
i have a user site and i am trying to make users able to update and delete their posts but i have the same issue with both. Whenever i update or delete it happens to all their postings instead of just one of their postings.
I want all their postings to show up but for them to be able to select the ones they want to update or delete from the results. Help me please!
For the update i tried
UPDATE "table"
SET column1 = [column1], column2 = [column2]
WHERE UID = '::uid::'
and for the delete DELETE FROM table
WHERE UID = '::uid::'
i have a user site and i am trying to make users able to update and delete their posts but i have the same issue with both. Whenever i update or delete it happens to all their postings instead of just one of their postings.
I want all their postings to show up but for them to be able to select the ones they want to update or delete from the results. Help me please!
For the update i tried
UPDATE "table"
SET column1 = [column1], column2 = [column2]
WHERE UID = '::uid::'
and for the delete DELETE FROM table
WHERE UID = '::uid::'