in reply to Re: Generate Random IP Addresses
in thread Generate Random IP Addresses

Thank you was useful
<?php for ($n = 1; $n < 100; $n++) { print implode('.', array(intval(mt_rand(0,255)), intval(mt_rand(0,255)), intval(mt_rand(0,255)), intval(mt_rand(0,255)))) . "\n"; } ?>