Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
function generate_number_code( $length = 8 ) { $chars = "0123456789"; $password = substr( str_shuffle( $chars ), 0, $length ); return $password; }