I have an array.Now I want to insert data in my table using this array value.
$claw
is the array
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
)
)
Now I want to insert data in my table using this array value.
I am using this code but not work
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);
}
I cant understand whats my wrong
$i<$claw
... that doesn't seem right. Problem 2: Your insert values need quotes. – Mark M Jun 22 at 6:21$i<count($claw)
– Feroz Akbar Jun 22 at 6:32