How do I add multiple values into one mysql cell?
You don't. If you have a one to many relationship, use an extra table.
e.g. a data model for stock ownership
owner
id
name
adress
ownedStocks
ownerId
stockId
amount
The second part of your question does not make any sense to me.