I have used array_combine to print out 2 different arrays, but the function use first array for index, and he supress values with same content. I need printout even when has a same value. Some tip about how resolve this? function mostra_2com($valor, $valor2){ echo "<table class='bs'><tr><td><b>Atividades</b></td><td><b>Opiniões</b></td></tr>"; foreach (array_combine($valor, $valor2) as $val => $val2) echo "<tr><td>".$val." [...]
The post PHP 2 Arrays in Foreach-loop? appeared first on BlogoSfera.