Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Generating Random String In PHP Using Hashing Functions

<?php
$str = rand();
$result = hash("sha256", $str);
echo "Hello from Softhunt.net";

echo $result;
?>
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Generating #Random #String #In #PHP #Using #Hashing #Functions
ADD COMMENT
Topic
Name
2+9 =