Hi there, thank you for lookign at my thread;
Here is my situation, I have an array like so:
array
(
[unique_id] => 10,
[something_else] => 'hello world',
[more_values] => 'whats more'
)
I want to swop unique_id to the index key of this array so that looks like this.
print $array[10]['more_values'];
Above will now print out 'whats more'.
I know it can be done with loops, I actually just want to know if there are any other methods.
Regards and thank you,
Titan