I have an array() contains string F1, F2, F3, F4.........
<?php
  $facts= array("F1", "F2", "F3", "F4);
?>
How can I generate combinations two elements of that array.
The output can be like that:
F1.F2 
F1.F3 
F1.F4
F2.F3 
F2.F4 
F3.F4
Please help me