I'm using php with mysql. I have a field in my table named "member" which has the names of the members of my site. I want to change the value in this field by adding a prefix to some of the member's names. Let's suppose there is a member named "Joe" in the "member" field. I want to change the value of this field to "JoeNEW". I'm guessing I would do something like this---
Update table_name set member ="$member"."NEW" where member="$member";
this doesn't work. Where am I going wrong?