PDA

View Full Version : PHP Help



torch
March 6th, 2002, 15:54
Can anyone make a mini script or do a little coding in php that it can randomly pick a number from 0-10? Thanks in advanced.

Dusty
March 6th, 2002, 16:00
srand((double)microtime()*1000000);
print rand(0,10);

torch
March 8th, 2002, 16:54
cool, thanks.