Salve!
Sono nuovo nel forum e quasi completamente inesperto di php.
Avrei bisogno che qualche anima pia mi aiutasse a risolvere un problema con "array_key_exist"...
ecco il codice che mi dà errore:
Grazie infinite!
Sono nuovo nel forum e quasi completamente inesperto di php.
Avrei bisogno che qualche anima pia mi aiutasse a risolvere un problema con "array_key_exist"...
ecco il codice che mi dà errore:
PHP:
$sqlcommande = "INSERT INTO tstat (idstat, datecommande, champtype, description, prix) VALUES ";
foreach($cles as $i)
{
if (array_key_exists($i, $_SESSION["commande"]["type"]) && $_SESSION["commande"]["type"] != NULL)
{
for ($j = 0; $j < $_SESSION["commande"]["quantite"][$i]; $j++)
{
$desc = str_replace("<br />", " - ", $_SESSION["commande"]["prod"][$i]);
$desc = strip_tags($desc);
$sqlcommande .= " ('', '".date("Y-m-d")."', '".$_SESSION["commande"]["type"][$i]."', '".addslashes($desc)."',".number_format((float)$_SESSION["commande"]["prix"][$i], 2, '.', ' ').")";
}
}
}
Grazie infinite!
Ultima modifica di un moderatore: