Forum Moderators: coopster
My problem is that the delete queries, whilst they say they have run successfully, aren't actually doing anything, and so I end up with multiple entries.
The delete statement is:
DELETE FROM join_proj_staff WHERE ID=$id;
This works fine directly in mysql, and so I am assuming it's something to do with php not having permission to delete records, but I have no idea where this would be set.
So, firstly, can anyone suggest a better way of updating the details, and secondly, can anyone tell me why my delete statement isn't actually working.
Thanks all :)
Andy
successfully deleted join_proj_staff - DELETE FROM join_proj_staff WHERE ID=175;
successfully deleted join_proj_staff - DELETE FROM join_proj_staff WHERE ID=176;
which is why I'm thinking it might be some kind of permissions issue with php/mysql and deleting records.
Thanks for responding tho :)