print random number in php code example
Example 1: random number generator in php
you can use rand() function for that in php.
Example:
Generate random numbers between 1 to 50
<?php
echo rand(1,50);
?>
Example 2: Generate Random String in PHP
phpCopy<?php
echo uniqid('user_');
?>