<?php function randomFloat($min = 0, $max = 1) { return number_format($min + mt_rand() / mt_getrandmax() * ($max - $min), 2, '.', ''); // 2 decimal places } echo randomFloat(1,2);
You have javascript disabled. You will not be able to edit any code.