-4

我想要一个带有Generate Key按钮的 PHP 页面,当用户单击它时,它会生成一个随机且唯一的数字并将其发送到数据库。

可能吗?谢谢!

4

2 回答 2

0

有你的按钮

<form method='post' action='generate.php'>
 <input type =submit>
</form>

然后在你的php页面上......

$rand = rand(0,1000000000);

$sql = " insert into table (random) values ('$rand')";
Mysql_query($sql);

注意,我使用 mysql_* 已弃用的函数,请改用 PDO....

但这只是为了说明如何去做

于 2013-06-15T22:56:28.253 回答
0
<?php
$connect_error = 'sorry we\'re expierencing connection problems.';
mysql_connect('localhost', 'root', '') or die($connect_error);
mysql_select_db('lr') or die($connect_error);
$fields = `rand_table`
$data = int rand ( int $min , int $max )
$inerting = mysql_query("INSERT INTO `users` ($fields) VALUES ($data)");
?>
于 2013-06-15T22:58:41.453 回答