Small addon, is it possible to insert the parameters to diffrent arrays?
for example x , y and z and not x1,x2, x3 like in the following:
$pizza = "piece1,piece2,piece3,piece4,piece5,piece6";
$x = explode(",", $pizza);
echo $x[0] ; // piece1
echo $x[1]; // piece2