Rough code, assuming all array have same length.
$array1=array("PHP","ROR","Python","Java");
    $array2=array("WP","Drupal","Joomla","SpreeCommerce");
    $array3=array("N2CMS","Life Ray","Magento","Zen Cart");
    for($i=0;$i<count($array1);$i++){
     echo $array1[$i]."=".$array2[$i]."<br>";
    }
    for($i=0;$i<count($array1);$i++){
     echo $array1[$i]."=".$array3[$i]."<br>";
    }
solved How to extract the value form the below array?