gpt4 book ai didi

php - 试图在 MySQL 中保存 PHP 函数的结果

转载 作者:可可西里 更新时间:2023-11-01 08:33:59 24 4
gpt4 key购买 nike

我创建了一个简单的客户注册表单 (signup.html) 来捕获 3 个字段(电子邮件、子域和计划)。

我还想给他们分配一个随 secret 码,我已经从这篇 SO 文章 (Generating a random password in php) 中提取了生成密码的代码。

我的 PHP 代码 (insert.php) 将表单数据很好地保存到 MySQL 中,但不是 randomPassword 函数的结果,它在字段中放置“()”而不是我希望的随机生成的密码。

我想我没有正确调用 randomPassword() 函数的结果。我在这里做错了什么?

注册.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>

插入.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);
?>

最佳答案

看起来您根本没有分配一个变量来包含密码。函数不只是自己执行。使用以下内容:

$myPass=randomPassword();

$sql="INSERT INTO accounts (email, plan, subdomain, password)
VALUES
('$_POST[email]','$_POST[plan]','$_POST[subdomain]','$myPass')";

它自己的函数只是坐在那里等待执行,但不会自行触发。在这种情况下,该函数返回一个值(它生成的密码)。要真正获得它,您可以编写类似 $myPass=randomPassword(); 的代码,然后执行函数并将值传递给变量。

看来你不是老手,我再扩充一些。如果您不确定为什么要使用函数而不是首先执行代码,则可以反复使用函数。假设我做了以下事情:

$myPass1=randomPassword();
$myPass2=randomPassword();

有了这个函数,我现在在变量中存储了两个完全不同的密码。您可以做各种其他奇特的事情,但将函数视为要在您的代码中重复使用的代码片段,希望在多种情况下 - 无需多次编写它。

关于php - 试图在 MySQL 中保存 PHP 函数的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673523/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com