Generate a 3 Digit Unique Number using PHP, Generate a 3 Digits Random Number using PHP, PHP rand() Function, Using the PHP Rand() Functions, Get 3 Digits Random Number in PHP, Create 3 Digits Random Number Using PHP, 3 Digit Unique Number Generate in PHP
rand (100,1000); This is the inbuild function of a php, you can generate a random number of 3 digit through it.
So let us know how this function is used.
<?php $randomid = rand(100,1000); echo $randomid; ?>