Posted by Steve on 09/27/64 12:00
"Steve" <no.one@example.com> wrote in message
news:Fy5jj.24$GW7.23@newsfe05.lga...
> $key = mt_rand(0, 10000) % count($array);
> echo 'bgsound src="' . $key . '" />';
just to be clear...
$morse = array(
'sound_1.wav' ,
'sound_2.wav' ,
'sound_3.wav'
);
$key = mt_rand(0, 10000) % count($morse);
echo '<bgsound src="' . $morse[$key] . '" />';
still an instant "i'm leaving this site now" hit with end-users because of
bgsound. however, i don't think garnering returning visitors is your aim
based on this site or the mismash site. design theory was never a
prerequisite to your being an it/mis professor? i guess that's why you hear
about john hopkins medical program...and nothing else. :)
[Back to original message]
|