not exectly php Im afraid... How to add text to text in a database?
old_text=old_text+'new text'
That is without first selecting old text ,puting into variable, adding new text to variable and shuving all into d-base.
If you're talking about MySQL, you can use the CONCAT() function
UPDATE table SET fieldname=CONCAT(fieldname, 'some text') WHERE theId=someId
Jesse2x
pgresql here.... 🙁 🙁
update creature set field=field||'some text';
😃 😃
I know, I know... RTFML dont shout at me.... been programing 6 hours straight