Hi.
As the title tells you, I want to change the position of items
in an array. Do you know a good way to do this?
I list all items on a page which looks like this:
item1 + -
item2 + -
item3 + -
You should click on the + to move the item one position
to the top, and the - is for a lower position in the array.
Do I really have to do it like this?
"run through the array, find the position of my item, delete it, run
a second time trough the array and put it in the new position"
or is there an array function I missed?
Thank you for any hints!
Fox