1
I could do so
$array = array(12, 14, 121, 123);
$var = $array[0].", ".$array[1].", ".......
echo $var
But how to do it if I don’t know the exact size of the array?
'Cause I’m getting her through a post that comes from a <select multiple="multiple"></select>
So you can’t tell the exact size of it.
Ever tried foreach?
– user28595
Excuse me... But how? In the way I am thinking there is no way to keep all values.... But always the last inserted...
– Naldson