Jump to content

generate random string


srcfresno

Recommended Posts

So I found this code from someone else on here who posted about creating a random string. I've copied the code for myself but when I upload php page to my server and view source... there is no php code. Essentially, i see no randomly generated text. what am i missing?

 

<?php
function genRandomString() {
    $length = 5;
    $characters = array_merge(range(0,9),range('a','z'),range('A','Z'));
$string = "";	
    for ($p = 0; $p < $length; $p++) {
        $string .= $characters[mt_rand(0, count($characters)-1)];
    }
    return $string;
}
?>

Link to comment
https://forums.phpfreaks.com/topic/245717-generate-random-string/
Share on other sites

excuse my ignorance... so like that

 


<?php
function genRandomString($length, $characters, $string) {
    $length = 5;
    $characters = array_merge(range(0,9),range('a','z'),range('A','Z'));
$string = "";	
    for ($p = 0; $p < $length; $p++) {
        $string .= $characters[mt_rand(0, count($characters)-1)];
    }
    return $string;
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.