Hi all,
Here's what I'm trying to do: Update an arbitrary number of rows, changing several fields to the SAME value.
$var = "1 3 5 7 9";
$query = "UPDATE tablename SET seen_before = 1 WHERE id = SET ($var);"
My question is this: What is the exact syntax on the Where clause when I lookin in a set, and how do I pass in the Set items through a php variable.
Thanks,
Michael