Generate random using web service into ASP variable.
With help of PHP, we now have another way to generate random strings, needed to create random ID for most of my web applications
Originally from https://helloacm.com/random/
If you want to prevent it from creating ID starts with zero (like I do), replace RandomHelloACM.php code
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
With
for ($i = 0; $i < $length; $i++) {
$Char1 = $characters[rand(0, $charactersLength - 1)];
while ($i == 0 && $Char1 == '0') {
$Char1 = $characters[rand(0, $charactersLength - 1)];
}
$randomString .= $Char1;
}
Access is limited.
Login here using your Linkedin account. to see or download code.
No registration, not another password to remember, login using your Linkedin account and have access to all public codes in Bold.codes
Linkedin LoginParameters
Statistics
Views 4,779
Downloads 1,558
IDs
Requirements
Codes Required 0

Similar Codes
Similar codes

By Developer
Recent 4 by ANmarAmdeen 4

Random Codes
Random Codes 4
