Text Formatted Code
function phpblock_playspot()
{
$max_number_of_products = 5;
$random_product = rand(1,$max_number_of_products);
if ($random_product == '1') { $retval = 'jimmy_g.php'; } else {}
if ($random_product == '2') { $retval = 'ryan_b.php'; } else {}
if ($random_product == '3') { $retval = 'bill_h.php'; } else {}
if ($random_product == '4') { $retval = 'chris_n.php'; } else {}
if ($random_product == '5') { $retval = 'eric_s.php'; } else {}
return $retval;
}