[Solved] Combine/Mix two lists of words [closed]


For a correct answer I would need to know what you are trying or how,

but a solution for that problem is as simple as

<?php

$array1 = array("make", "break", "buy");
$array2 = array("home", "car", "bike");

foreach ($array1 as $i => $value) {
    foreach ($array2 as $j => $value2) {
        echo $value.' '.$value2.'<br />';
    }
}
?>

solved Combine/Mix two lists of words [closed]