PHP Random Number / String Generator

Here are some methods by which you can generate random numbers / strings in PHP.

  1. There is a word called rand in php by which you can generate random numbers. Method is given bellow.

PHP RANDOM NUMBER

$random_value =rand();

echo $random_value.”</br>”;

  1. You can also give you range of numbers in rand() function . Syntex in given bellow

Read more…

Leave a comment