<?php echo uniqid(); // This will create a ID what is 13 characters long ?>
Example
<?php
echo uniqid('', true); // This will create a ID what is 23 characters long
?>
Example
Guest_Jaan_*
|
|
|
Guest_Jaan_*
uniqid(string prefix, [bool_more_entropy])
<?php
echo uniqid('', true); // This will create a ID what is 23 characters long
?>
<?php
echo uniqid('codecall', true);
?>