where am i?
edit:
Put this into a php file, upload it to a free webserver (like freewebs)
and run it. change the $dropped array to the text that is given.
CODE
<?php
function roll()
{
$r = rand(1,19);
$dropped=array(0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0);
if($dropped[$r]==1)
{
roll();
exit;
}
else
{
$dropped[$r]=1;
$i = implode(",",$r);
print "array({$i})";
print "<br /><br />";
print "ID Dropped: {$r}";
}
}
roll();
?>
edit: wrong var under id dropped.