gpt4 book ai didi

php - explode 然后插入表

转载 作者:行者123 更新时间:2023-11-29 23:21:05 26 4
gpt4 key购买 nike

我只是对如何分解字符串以单独插入数据库感到困惑。

我的代码:

$mymotives = "Entrega de Documentos, Orientacion, Username y Password, Convalidacion";          
$ExplodeMotives = explode(", ", $mymotives);
foreach ($ExplodeMotives as $value) {
$queryAdd = "INSERT INTO StuSelectCateg (attendedBy, personName, personLast, depName, categoryName, timeOut)
VALUES ('".$_SESSION["nomEmpleado"]. " " . $_SESSION["appEmpleado"]."', '".$_SESSION['estNombre']."', '".$_SESSION['estApellido']."', '".$_SESSION['concentracion']."', '$value', '$stuTOut')";
mysqli_query($con, $queryAdd);
}

我希望我的输出像这样在我的数据库中

Table | Category
-----------------------------
1 | Entrega de Documentos
2 | Username y Password
3 | Convalidacion

最佳答案

<?php
$mymotives = "Entrega de Documentos, Orientacion, Username y Password, Convalidacion";
$ExplodeMotives = explode(", ", $mymotives);
foreach ($ExplodeMotives as $value)
{
$queryAdd[] = "INSERT INTO StuSelectCateg (attendedBy, personName, personLast, depName, categoryName, timeOut) VALUES ('".$_SESSION["nomEmpleado"]. " " . $_SESSION["appEmpleado"]."', '".$_SESSION['estNombre']."', '".$_SESSION['estApellido']."', '".$_SESSION['concentracion']."', '$value', '$stuTOut')";
}
mysqli_query($con, $queryAdd);
?>

你可以像上面一样将变量查询添加到数组中。

关于php - explode 然后插入表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27285750/

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