How can I account for this line in mysql
desc=desc+$desct
what i want, every time i insert a variable from php that the string is added to the string that was already in db and split by ||
the desc field should look like this:
desc
10||30||90||710
let's say i want to add a value of 20
desc
10||30||90||710||20
then the desc field should look like this:
source
share