$article, $price and $count are arrays with the same amount of items.
count($article) -> result: 3 (correct)
However, the page loads for an endless time but nothing happens.. if I remove the following code everything works fine.. what am I doing wrong? Thanks!
$asd = count($article);
for ($i=1; i<=$asd; $i++){
$sqla = @mysql_query("INSERT INTO warenkorb SET wk_email='".$email."', wk_artikel='".$article[$i]."', wk_preis='".$price[$i]."', wk_anzahl='".$count[$i]."', wk_versand='".$versand."', wk_sum='".$sum."");
}