Hi
I believe that rand only generates random whole numbers and can't deal with floats..
So you might want to try:
srand((double)microtime()*1000000);
$randNum = rand(0, 69);
$randNum = "1.$randNum";
This creates a random number between 0 and 69 and then creates a new variable with "1." appended to the front of it.. as PHP just uses scalars you can still do arithmetic ops. on the variable you create this way e.g.
$randNum += 0.01;
Hope this helps
Rgds
John