我创建了一个简单的客户注册表单(signup.html)来捕获3个字段(电子邮件,子域名和计划)。
我还想为他们分配一个随机密码,我已经提取了代码来生成这篇SO文章(Generating a random password in php)。
我的PHP代码(insert.php)将表单数据保存到MySQL中,但不是randomPassword函数的结果,它在字段中放置“()”而不是我希望的随机生成的密码。
我收集我没有正确调用randomPassword()函数的结果。我在这里做错了什么?
SIGNUP.HTML
<form action="insert.php" method="post" class="inline-form">
<div class="form-group">
<label for="email">Your email address</label>
<input type="email" name="email" class="form-control input-lg" id="email" placeholder="Enter email">
</div><br><br>
<label>Select your plan</label><br>
<div class="radio">
<label>
<input type="radio" name="plan" id="plan" value="optionA" checked>
Option A
</label>
</div><br>
<div class="radio">
<label>
<input type="radio" name="plan" id="plan" value="optionB">
Option B
</label><br><br>
</div>
<div class="form-group">
<label for="subdomain">Pick your subdomain
</label>
<input type="text" name ="subdomain" class="form-control input-lg" id="subdomain">
</div>
<br><br>
<button type="submit" class="btn btn-teal" name="Sign Up">Sign me up!</button>
</form>
INSERT.PHP
<?php
$con=mysqli_connect("localhost","username","password","db_name");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
function randomPassword() {
$alphabet = "abcdefghijklmnopqrstuwxyzABCDEFGHIJKLMNOPQRSTUWXYZ0123456789";
$pass = array(); //remember to declare $pass as an array
$alphaLength = strlen($alphabet) - 1; //put the length -1 in cache
for ($i = 0; $i < 8; $i++) {
$n = rand(0, $alphaLength);
$pass[] = $alphabet[$n];
}
return implode($pass); //turn the array into a string
}
$sql="INSERT INTO accounts (email, plan, subdomain, password)
VALUES
('$_POST[email]','$_POST[plan]','$_POST[subdomain]','$randomPassword()')";
if (!mysqli_query($con,$sql))
{
die('Error: ' . mysqli_error($con));
}
echo "1 record added";
mysqli_close($con);
?>
答案 0 :(得分:2)
看起来你根本没有分配变量来包含密码。功能不是自己执行的。使用以下内容:
$myPass=randomPassword();
$sql="INSERT INTO accounts (email, plan, subdomain, password)
VALUES
('$_POST[email]','$_POST[plan]','$_POST[subdomain]','$myPass')";
它自己的功能只是坐在那里等待执行,但不会自动发射它。在这种情况下,函数返回一个值(它所做的密码)。要实际获得它,您可以编写像$myPass=randomPassword();
这样的代码,然后执行该函数并将值传递给变量。
由于你似乎不是一个老将,我会扩展一些。如果您不确定为什么要使用函数而不是仅仅执行代码,则可以反复使用函数。让我们说我做了以下事情:
$myPass1=randomPassword();
$myPass2=randomPassword();
有了这个功能,我现在在变量中存储了两个完全不同的密码。你可以做各种其他花哨的事情,但是把一个函数想象成一段代码片段,可以在你的代码中重复使用,希望能在很多场合使用 - 而不需要多次编写。
答案 1 :(得分:0)
也许这会起作用
$sql="INSERT INTO accounts (email, plan, subdomain, password)
VALUES ('$_POST[email]','$_POST[plan]','$_POST[subdomain]','randomPassword()')";