gpt4 book ai didi

php - 合并多个 POST 并将其添加到表中

转载 作者:行者123 更新时间:2023-11-29 02:53:49 25 4
gpt4 key购买 nike

这是我向表中添加多种类型的代码。我想合并区域、位置、类型并一次性添加到表格中。我认为这行不通 if(!empty($_POST['types'] && $_POST[''] && $_POST[''] ) 谢谢!

if(!empty($_POST['types'])) {   
$values = array();
foreach($_POST['types'] as $typ_id) {
$values[] = sprintf('(%d, %d)', $station_id, $typ_id);
}

$query = 'INSERT IGNORE INTO station_typ_tab
(station_id, typ_id, area_id, location_id)
VALUES ' .
implode(',', $values);
mysql_query($query, $db) or die(mysql_error($db));
}

编辑:这里是类型[]的部分代码,区域和位置也是如此

<td>Types:<br/> <small>CTRL + click to set multiple pollutants</em></small>
</td>
<td>
<?php
$query = 'SELECT typ_id, typ FROM typ_tab ORDER BY typ ASC';
$result = mysql_query($query, $db) or die(mysql_error($db));

if (mysql_num_rows($result) > 0) {
echo '<select multiple name="types[]">';
while ($row = mysql_fetch_array($result)) {
if (isset($station_typ[$row['typ_id']])) {
echo '<option value="' . $row['typ_id'] . '"
selected="selected">';
} else {
echo '<option value="' . $row['typ_id'] .'">';
}
echo $row['typ'] . '</option>';
}
echo '</selected>';
} else {
echo '<p><strong>Databaza je prazdna... <a href="edit_pollutant.php">Enter database</a></strong></p>';
}
mysql_free_result($result);

如果类型、位置和区域来自不同的选择输入,如何组合 $_POST。像 if(!empty($_POST['types'] && $_POST['areas'] && $_POST['location']) ){ $values = array(); foreach( NEW VARIABLE as $typ_id && area_id &&location_id) { $values[] = sprintf('(%d, %d, %d, %d)', $station_id, $typ_id, area_id, location_id);如果可以这样做的话

最佳答案

结合IF尝试使用

if((!empty($_POST['types'])) && (!empty($_POST['area'])) && (!$_POST['location'])));

关于php - 合并多个 POST 并将其添加到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32794798/

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