Random string
generates a random string from an array of characters
Random string
<?php
// function to generate random strings
function RandomString($length=32)
{
$randstr=”;
srand((double)microtime()*1000000);
//our array add all letters and numbers if you wish
$chars = array ( ‘a’
Related posts:
- Random number examples Learn more about Random number examples by visiting our website....
- Random letters Learn more about Random letters by visiting our website....
- Generate a random password Learn more about Generate a random password by visiting our...
- Random image example Learn more about Random image example by visiting our website....
- Random passwords Learn more about Random passwords by visiting our website....
Related posts brought to you by Yet Another Related Posts Plugin.

