我如何生成X随机数并将其存储到一个ID的数据库中

时间:2018-06-01 06:24:49

标签: php random

生成在文本字段中输入的随机数,并希望将它们存储在一个ID号的数据库中。

<html>
        <form action="loops.php" method="post">
            <input type="text" name="emp"  value="<?php $abd ?>" />
            <input type="submit" value="submit"></input>
        </form>  
    <?php 
    $var_value = $_POST['emp'];

        function gen_random_string($length=6)
        {
            $chars ="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
            $final_rand ='';
            for($i=0;$i<$length; $i++)
            {
                $final_rand .= $chars[ rand(0,strlen($chars)-1)];
            }
            return $final_rand;
        }
        for($i=1; $i<=$var_value; $i++){
            $abc = gen_randomenter code here_string($length=6);
             echo $abc."<br>"; //generates a string
        }
        ?>
    </html>

1 个答案:

答案 0 :(得分:0)

我认为this应该适合你:

我将PHP更改为javascript。您现在可以在文本输入中写入内容,它将根据长度生成随机字符串。它会将生成的字符串存储为隐藏字段的值。然后,您可以将表单数据发送到可以处理数据库操作的PHP脚本。随机ID将在$_POST['id']

中设置