http://qs321.pair.com?node_id=297563


in reply to Re: crypt prototype and ( time ) x 2
in thread crypt prototype and ( time ) x 2

If you wanted to get around the time only changing every 100 seconds problem use:
$time = time() % 100000000; # time mod a number with 8 zeros
That will give you a different time-seeded number every second, being the last 8 digits of the time returned by the time function.
----
If I melt dry ice can I swim without getting wet?