php_Mail

Last updated on November 16th, 2015 at 09:57 am

Here is the simple code to create random numbers in php,

<?php
  $min=10;
  $max=500;
  echo rand($min,$max);
?>

This will create a random number between minimum value of 10 and maximum value of 500

Leave a Reply

Your email address will not be published. Required fields are marked *