Is it possible to insert this kind of data from database into an array?
Mouse
Keyboard //Saved from a Textarea box
Monitor
The whole table looks like this;
id || Owner || Items
--------------------------
1 || John || Mouse
|| || Keyboard //This is in a single row
|| || Monitor
--------------------------
How to assign each line of the data from field "Items" into an array (let's say $items)?
So that it will be like:
$items[0] = "Mouse";
$items[1] = "Keyboard";
$items[2] = "Monitor";
Johnis the owner of the mouse, keyboard, and monitor, or that they keyboard and mouse have no owner? or just have a list of items?