I have a array like this.
Array (
[0] => PHP
[1] => ROR
[2] => Python
[3] => JAVA
)
Array (
[0] => WP
[1] => Drupal
[2] => Joomla
[3] => SpreeCommerce
)
Array (
[0] => N2CMS
[1] => Life Ray
[2] => Magento
[3] => Zen Cart
)
Here i need the the above array extract to this below format, the first array use like as column part and others array are use the columns value.
PHP = WP
ROR = Drupal
Python = Joomla
JAVA = SpreeCommerce
PHP = N2CMS
ROR = Life Ray
Python = Magento
JAVA = Zen Cart
Rough code, assuming all array have same length.