Posted on: 01/15/06 07:39pm
By: Anonymous (Max)
function phpblock_playspot() { $max_number_of_products = 5; $random_product = rand(1,$max_number_of_products); if ($random_product == '1') { include 'jimmy_g.php'; } else {} if ($random_product == '2') { include 'ryan_b.php'; } else {} if ($random_product == '3') { include 'bill_h.php'; } else {} if ($random_product == '4') { include 'chris_n.php'; } else {} if ($random_product == '5') { include 'eric_s.php'; } else {} end; }
Posted on: 01/16/06 01:40am
By: Anonymous (mach)
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; }try that