i want to use foreach function for 3 variables
i use this code in my page:
foreach (array_combine($online_order_name, $online_order_q) as $online_order_name1 => $online_order_q1) { mysql_query("insert into ....... }
how can i do that like :
<? foreach (array_combine($online_order_name, $online_order_q,$third_variable) as $online_order_name1 => $online_order_q1 => $third_variable2) { ?>
thank you
I guess this will solve your need:
<?php $A=array(1,2,3); $B=array('a','b','c'); $C=array('x','y','z'); foreach (array_map(NULL, $A, $B, $C) as $x) { list($a, $b, $c) = $x; echo "$a $b $c "; }
1.4m articles
1.4m replys
5 comments
57.0k users