So I created an array by default value in MySQL. Now I am trying to display these separately which I am figuring the sort() function would help but it's not displaying what I had in mind. Instead I get blank. I am new to arrays and anything helps. I have looked at sort() and array() tutorials but nothing includes the MySQL help like I need.
MySQL: blessing = None, None, Buy, Buy, Buy
$blessing = array($char['blessing']);
$blessing = sort($blessing);
print "$blessing[0], $blessing[1], $blessing[2]";
Any help is appreciated!