Witam,
Na jakiej zasadzie działają skrypty sprawdzające czy jakieś 2 znakowe domeny są wolne i czy są zarezerwowane...
Pzdr,
Venome.
<? ?>
<?php // Andy Shellam, andy [at] andycc [dot] net // generate a random string of numbers/letters // you could repeat the alphabet to get more randomness $template = "1234567890abcdefghijklmnopqrstuvwxyz"; function GetRandomString($length) { for ($a = 0; $a <= $length; $a++) { $rndstring .= $template[$b]; } return $rndstring; } ?>