Hi
I am having problems as I would like to take values out of an array
eg $name = array (2,3,4);
and would then like to produce all the permutations of them
eg
2,3,4
3,4,2
4,3,2
2,4,3
3,2,4
4,2,3
Does anyone know how to do this /have the code to do this?
Thanks