I have such question. I want to use this php code (below). But I want to get different $item1 and $item2 instead of $item. Here $item1 gets values of $array1 and $item2 gets values of $array2. Sorry for my english. I need your help. Thank you in advance for your reply:
[php]
159 sasasas159 zasas
118 zasas
75
118
75 zasas
<?php $array1=$_POST['diller']; $array2=$_POST['price2']; foreach (array ($array1, $array2) as $control) { foreach ($control as $item) { echo $item."
"; } } ?>[/php]