Answers for "random 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
2

php rand int

random_int ( int $min , int $max );
Posted by: Guest on May-17-2020

Browse Popular Code Answers by Language