Answers for "send random numbers to email in 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
0

send random numbers to email in php

i need a piece of code to send random generated password to email
if any please thank myou in advance
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language