我有一个包含红色、绿色和黄色三个值的数组。现在我应该
insert red into column3 row1
insert green into column3 row2
insert yellow into column3 row3
我该怎么做我尝试编写代码
foreach ($output as $value)
{
echo ($value.'<br>');
$tstring = implode(',' , $output);
$insert_col= "UPDATE INTO `5` (B) VALUES ('$tstring')";
$insert_result = mysql_query($insert_col);
if ($insert_result)
{
echo ("RECORDED!")|
exit();
}
}
但它不起作用。它正在使用值 R 向现有表填充额外的行。
请帮忙!