.
In my database (not mySQL!) I want to store an array of integer ID numbers:
$idnumbers = array ( 23, 2, 35, 15, 4 );
into one string field (column).
I was thinking of putting these numbers into a $string.
Save this as a text $string in my database.
Get the data back and make an integer array again.
I guess I should need an 'delimiter' (divider character), maybe even a space can be used,
to separate these numbers inside the string.
1. How to read $idnumbers() into text $string ?
2. How to convert $string back to an integer array $idnumbers()
thanks