Hello everyone, I have a problem with how to sort this array with values of sub arrays so that whenever the script is called come with different values in a random way?
This is the normal array:
$results = array (0 => array 1 => int 5, 1 => array 2 => int 3, 2 => array 8 => int 5);
Ex: Script Wheel first come
$results = array (1 => array 2 => int 3, 0 => array 1 => int 5, 2 => array 8 => int 5);
Ex: Script Wheel the second time come
$results = array (2 => array 8 => int 5, 1 => array 2 => int 3, 0 => array 1 => int 5);
And so on!