0
我有一個數組。現在我想用我的數組值插入數據到我的表中。 $claw
是數組php mysql從數組插入值
Array
(
[0] => Array
(
[0] => Alabama
[1] => Yes
[2] => R
[3] =>
are free to enact restrictions greater than .
[4] =>
[5] =>
[6] =>
[7] =>
It is unlawful to sell
)
)
現在我想用這個數組值在我的表中插入數據。
我使用這個代碼,但不能正常工作
public function Insert($claw)
{
$fields = array();
for($i=0;$i<$claw; $i++)
{
for($j=0;$j<$claw[$i]; $j++)
{
$fields[] = $claw[$i][$j];
}
}
$sql = "Insert into information values(" . implode(', ', $fields) . ')';
return $this->MyCommandR($sql);
}
我無法理解什麼我的錯
你需要引用你的價值觀,你真的應該逃避它們。 –
問題1:'$ i <$ claw' ......這看起來不正確。問題2:您的插入值需要引號。 –
'$ i