name; $out = '

What Artists Love About '.$name.'

'; } } return $out; } function eink_random_style(array $check, array $exclude = array()){ if(!empty($exclude)){ foreach($exclude as $ex){ if(in_array($ex,$check)){ unset($check[array_search($ex,$check)]); } } } if(empty($check)){ return; } shuffle($check); shuffle($check); $max = count($check) - 1; $rand = rand(0,$max); return $check[$rand]; }