Answers for "how to generate random numbers in php without using rand function in php"

PHP
12

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);
?>
Posted by: Guest on July-11-2020
1

php random number

rand();
Posted by: Guest on March-27-2020

Code answers related to "how to generate random numbers in php without using rand function in php"

Browse Popular Code Answers by Language