print_r($rows); results in the following:
Array
(
[0] => Array
(
[bg_image] => uploads/2013/06/Home_background1.jpg
)
[1] => Array
(
[bg_image] => uploads/2013/06/Home_background2.jpg
)
[2] => Array
(
[bg_image] => uploads/2013/06/Home_background3.jpg
)
)
What I'm looking to get help with is randomly selecting one of the values from above. I'm fairly new to php so sorry if this is a basic question.