[snip]
What PHP version do you use?  I only have version 4.3.1 on the machine.
[/snip]

Did this on a 4.2.1 and a 4.3...no probs. Have you tried the code I
posted on your machine?

<?php
$i=25;
while($i > 0){
$random=rand (0,99999999999999999);
echo number_format($random, 0, '', ',')."\n";
$i--;
}
?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to