used shuffle
function
$a=array("a","b","c","d","e");
shuffle($a);
print_r($a);
for more details about shuffle
read Documentation
solved php – how to randomizing items in array
used shuffle
function
$a=array("a","b","c","d","e");
shuffle($a);
print_r($a);
for more details about shuffle
read Documentation
solved php – how to randomizing items in array