Generador de números aleatorios en PHP
you can use rand() function for that in php.
Example:
Generate random numbers between 1 to 50
<?php
echo rand(1,50);
?>
Ankur
you can use rand() function for that in php.
Example:
Generate random numbers between 1 to 50
<?php
echo rand(1,50);
?>
$uniqueCode = md5(uniqid(rand(), true)); echo $uniqueCode;
<?php
$random = substr(md5(mt_rand()), 0, 7);
echo $random;
?>