1
I did a foreach to go adding values to an Insert but suddenly an error appeared Array to string Conversion strange and have no idea what it is.
public function distribuicaoprodutos(){
$filiais=json_decode($_POST['filiais'],TRUE);
$dados=json_decode($_POST['dados'],TRUE);
$insert="INSERT INTO movimentacao (Filial, Quantidade) VALUES ";
$i=0;
foreach($filiais as $key => $value)
{
$i++;
if($value!="" && strlen($filiais)>$i) //linha de erro
{
$insert.="('".$key."','".$value."'),";
}elseif($value!="" && strlen($filiais)==$i){
$insert.="('".$key."','".$value."')";
}
}
}
Which line of error?
– rray
changed the question...
– Silvio Andorinha