Answers for "create a random name in php"

PHP
24

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
0

Generate Random String in PHP

phpCopy<?php 
echo uniqid('user_');
?>
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language