PCHomepage
Programmer
I'm not a newbie but I am quite rusty at this. I have a dynamically-generated UPDATE query from a form submission that is not giving any errors but neither is it updating. I'm sure I've missed something obvious as it doesn't appear that it is actually doing anything with the query. Can someone take a look?
Thanks in advance.
Don
Code:
$query = "UPDATE recordings SET Title = 5, Format = 10, CatalogNo = 'DMO-55458', AutoLinked = 1, Description = 'Test Data', KeyWords = 'Test Data', Label = 50, Country = 12, Year = 1962, YearExact = 1, MonoStereo = 2, LinerNotes = 32, TracksAssigned = 11155, SpecialTracks = 'Test Data', Bootleg = 0, GeneralHistory = NULL, TitleHistory = 1, ArgHistory = 16, PressingHistory = 'Test Data', ReviewID = NULL, YearSort = 1943, ArchiveCopy = 1, ItemsID = 1024722449, EntryVerified = 1 WHERE ID = 220472229";
mysql_query($query);
Thanks in advance.
Don