php generate random numer 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: php random number generator
<?php
echo rand(1,50);
?>
Example 3: php creazione numero random
<?
$numero = rand(0,100);
echo $numero;
?>