I am trying to select data from my database and display it like a string. I know you would need to change it to an array and then to a string, but I don't know how. When I run the mysql query:
"SELECT 'plant (cm)' FROM PlantDATA
"
I get the following:0.10 0.25 0.33I really would like to get it to a string like:
0.10, 0.25, 0.33so I could feed it to my bootstrap chart.
EDIT: My database looks like this: {id, date, plant (cm)}
1 | 01-02-2019 | 0.10 2 | 03-02-2019 | 0.25 3 | 06-02-2019 | 0.33