Forum Moderators: coopster
currently i am using mysql set command to change the entry of the field info.
example:
UPDATE data SET
info = '$newinfo',
WHERE id='1';
what i am trying to do is maintain the old info while combining it with $newinfo. I know something can be done with numbers how about characters?
UPDATE data SET
info = info + '$newinfo',
WHERE id='1';
UPDATE data SET
info = CONCAT(info,'$newinfo')
WHERE id=1;
[edited by: coopster at 8:44 pm (utc) on April 4, 2006]