Hi! This is a dumbly simple question, but I've never had to deal with it and can't any examples on how to do it.
I need to update a MySQL field with 2 variables:
"UPDATE Directory SET email_sent = $lstgs['email_sent'], $appear_in" ......
But that won't work, so I need someway to get the same info in there. What it is doing is appending the current value with the current value + a new value, ie. "List1,List2" --> "List1,List2,List3".
Any ideas?
Thanks in advance!