I tried to make do with array_multisort function but could figure it out really 🙁
Help 🙂
<?php
$shop1 = file("shop1");
$shop2 = file("shop2");
$shop3 = file("shop3");
$shop4 = file("shop4");
//in every shop file I have lets say oranges, apples and bannanas
//I want to print out a table like this
shop | oranges | apples | bannanas
// and have it sorted by the number of bannanas lets say
?>