I have a project in which I need to generate a unique 5 digit alphanumeric ID for the user. How can I achieve this using codeigniter!?
thanks
There is a function for that in string helper called random_string.
$this->load->helper('string');
echo random_string('alnum',5);
Details
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With