Answer the question
In order to leave comments, you need to log in
How to write data to cookie, and how to work with session?
Never encountered cookies. But now the time has come. The task is this: a code is generated on the page from letters and numbers.
<?php
function generate_code($length = 7){
$num = rand(11111, 99999);
$code = md5($num);
$code = substr($code, 0, (int)$length);
return $code;
}
?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question